1. Packages
  2. Azure Classic
  3. API Docs
  4. logicapps
  5. Workflow

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

azure.logicapps.Workflow

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

    Manages a Logic App Workflow.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "workflow-resources",
        location: "West Europe",
    });
    const exampleWorkflow = new azure.logicapps.Workflow("example", {
        name: "workflow1",
        location: example.location,
        resourceGroupName: example.name,
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="workflow-resources",
        location="West Europe")
    example_workflow = azure.logicapps.Workflow("example",
        name="workflow1",
        location=example.location,
        resource_group_name=example.name)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/logicapps"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("workflow-resources"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = logicapps.NewWorkflow(ctx, "example", &logicapps.WorkflowArgs{
    			Name:              pulumi.String("workflow1"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "workflow-resources",
            Location = "West Europe",
        });
    
        var exampleWorkflow = new Azure.LogicApps.Workflow("example", new()
        {
            Name = "workflow1",
            Location = example.Location,
            ResourceGroupName = example.Name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.logicapps.Workflow;
    import com.pulumi.azure.logicapps.WorkflowArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("workflow-resources")
                .location("West Europe")
                .build());
    
            var exampleWorkflow = new Workflow("exampleWorkflow", WorkflowArgs.builder()        
                .name("workflow1")
                .location(example.location())
                .resourceGroupName(example.name())
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: workflow-resources
          location: West Europe
      exampleWorkflow:
        type: azure:logicapps:Workflow
        name: example
        properties:
          name: workflow1
          location: ${example.location}
          resourceGroupName: ${example.name}
    

    Create Workflow Resource

    new Workflow(name: string, args: WorkflowArgs, opts?: CustomResourceOptions);
    @overload
    def Workflow(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 access_control: Optional[WorkflowAccessControlArgs] = None,
                 enabled: Optional[bool] = None,
                 identity: Optional[WorkflowIdentityArgs] = None,
                 integration_service_environment_id: Optional[str] = None,
                 location: Optional[str] = None,
                 logic_app_integration_account_id: Optional[str] = None,
                 name: Optional[str] = None,
                 parameters: Optional[Mapping[str, str]] = None,
                 resource_group_name: Optional[str] = None,
                 tags: Optional[Mapping[str, str]] = None,
                 workflow_parameters: Optional[Mapping[str, str]] = None,
                 workflow_schema: Optional[str] = None,
                 workflow_version: Optional[str] = None)
    @overload
    def Workflow(resource_name: str,
                 args: WorkflowArgs,
                 opts: Optional[ResourceOptions] = None)
    func NewWorkflow(ctx *Context, name string, args WorkflowArgs, opts ...ResourceOption) (*Workflow, error)
    public Workflow(string name, WorkflowArgs args, CustomResourceOptions? opts = null)
    public Workflow(String name, WorkflowArgs args)
    public Workflow(String name, WorkflowArgs args, CustomResourceOptions options)
    
    type: azure:logicapps:Workflow
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args WorkflowArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args WorkflowArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args WorkflowArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WorkflowArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WorkflowArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Workflow Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Workflow resource accepts the following input properties:

    ResourceGroupName string
    The name of the Resource Group in which the Logic App Workflow should be created. Changing this forces a new resource to be created.
    AccessControl WorkflowAccessControl
    A access_control block as defined below.
    Enabled bool
    Is the Logic App Workflow enabled? Defaults to true.
    Identity WorkflowIdentity
    An identity block as defined below.
    IntegrationServiceEnvironmentId string
    The ID of the Integration Service Environment to which this Logic App Workflow belongs. Changing this forces a new Logic App Workflow to be created.
    Location string
    Specifies the supported Azure location where the Logic App Workflow exists. Changing this forces a new resource to be created.
    LogicAppIntegrationAccountId string
    The ID of the integration account linked by this Logic App Workflow.
    Name string
    Specifies the name of the Logic App Workflow. Changing this forces a new resource to be created.
    Parameters Dictionary<string, string>

    A map of Key-Value pairs.

    NOTE: Any parameters specified must exist in the Schema defined in workflow_parameters.

    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    WorkflowParameters Dictionary<string, string>
    Specifies a map of Key-Value pairs of the Parameter Definitions to use for this Logic App Workflow. The key is the parameter name, and the value is a JSON encoded string of the parameter definition (see: https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language#parameters).
    WorkflowSchema string
    Specifies the Schema to use for this Logic App Workflow. Defaults to https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#. Changing this forces a new resource to be created.
    WorkflowVersion string
    Specifies the version of the Schema used for this Logic App Workflow. Defaults to 1.0.0.0. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the Resource Group in which the Logic App Workflow should be created. Changing this forces a new resource to be created.
    AccessControl WorkflowAccessControlArgs
    A access_control block as defined below.
    Enabled bool
    Is the Logic App Workflow enabled? Defaults to true.
    Identity WorkflowIdentityArgs
    An identity block as defined below.
    IntegrationServiceEnvironmentId string
    The ID of the Integration Service Environment to which this Logic App Workflow belongs. Changing this forces a new Logic App Workflow to be created.
    Location string
    Specifies the supported Azure location where the Logic App Workflow exists. Changing this forces a new resource to be created.
    LogicAppIntegrationAccountId string
    The ID of the integration account linked by this Logic App Workflow.
    Name string
    Specifies the name of the Logic App Workflow. Changing this forces a new resource to be created.
    Parameters map[string]string

    A map of Key-Value pairs.

    NOTE: Any parameters specified must exist in the Schema defined in workflow_parameters.

    Tags map[string]string
    A mapping of tags to assign to the resource.
    WorkflowParameters map[string]string
    Specifies a map of Key-Value pairs of the Parameter Definitions to use for this Logic App Workflow. The key is the parameter name, and the value is a JSON encoded string of the parameter definition (see: https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language#parameters).
    WorkflowSchema string
    Specifies the Schema to use for this Logic App Workflow. Defaults to https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#. Changing this forces a new resource to be created.
    WorkflowVersion string
    Specifies the version of the Schema used for this Logic App Workflow. Defaults to 1.0.0.0. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the Resource Group in which the Logic App Workflow should be created. Changing this forces a new resource to be created.
    accessControl WorkflowAccessControl
    A access_control block as defined below.
    enabled Boolean
    Is the Logic App Workflow enabled? Defaults to true.
    identity WorkflowIdentity
    An identity block as defined below.
    integrationServiceEnvironmentId String
    The ID of the Integration Service Environment to which this Logic App Workflow belongs. Changing this forces a new Logic App Workflow to be created.
    location String
    Specifies the supported Azure location where the Logic App Workflow exists. Changing this forces a new resource to be created.
    logicAppIntegrationAccountId String
    The ID of the integration account linked by this Logic App Workflow.
    name String
    Specifies the name of the Logic App Workflow. Changing this forces a new resource to be created.
    parameters Map<String,String>

    A map of Key-Value pairs.

    NOTE: Any parameters specified must exist in the Schema defined in workflow_parameters.

    tags Map<String,String>
    A mapping of tags to assign to the resource.
    workflowParameters Map<String,String>
    Specifies a map of Key-Value pairs of the Parameter Definitions to use for this Logic App Workflow. The key is the parameter name, and the value is a JSON encoded string of the parameter definition (see: https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language#parameters).
    workflowSchema String
    Specifies the Schema to use for this Logic App Workflow. Defaults to https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#. Changing this forces a new resource to be created.
    workflowVersion String
    Specifies the version of the Schema used for this Logic App Workflow. Defaults to 1.0.0.0. Changing this forces a new resource to be created.
    resourceGroupName string
    The name of the Resource Group in which the Logic App Workflow should be created. Changing this forces a new resource to be created.
    accessControl WorkflowAccessControl
    A access_control block as defined below.
    enabled boolean
    Is the Logic App Workflow enabled? Defaults to true.
    identity WorkflowIdentity
    An identity block as defined below.
    integrationServiceEnvironmentId string
    The ID of the Integration Service Environment to which this Logic App Workflow belongs. Changing this forces a new Logic App Workflow to be created.
    location string
    Specifies the supported Azure location where the Logic App Workflow exists. Changing this forces a new resource to be created.
    logicAppIntegrationAccountId string
    The ID of the integration account linked by this Logic App Workflow.
    name string
    Specifies the name of the Logic App Workflow. Changing this forces a new resource to be created.
    parameters {[key: string]: string}

    A map of Key-Value pairs.

    NOTE: Any parameters specified must exist in the Schema defined in workflow_parameters.

    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    workflowParameters {[key: string]: string}
    Specifies a map of Key-Value pairs of the Parameter Definitions to use for this Logic App Workflow. The key is the parameter name, and the value is a JSON encoded string of the parameter definition (see: https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language#parameters).
    workflowSchema string
    Specifies the Schema to use for this Logic App Workflow. Defaults to https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#. Changing this forces a new resource to be created.
    workflowVersion string
    Specifies the version of the Schema used for this Logic App Workflow. Defaults to 1.0.0.0. Changing this forces a new resource to be created.
    resource_group_name str
    The name of the Resource Group in which the Logic App Workflow should be created. Changing this forces a new resource to be created.
    access_control WorkflowAccessControlArgs
    A access_control block as defined below.
    enabled bool
    Is the Logic App Workflow enabled? Defaults to true.
    identity WorkflowIdentityArgs
    An identity block as defined below.
    integration_service_environment_id str
    The ID of the Integration Service Environment to which this Logic App Workflow belongs. Changing this forces a new Logic App Workflow to be created.
    location str
    Specifies the supported Azure location where the Logic App Workflow exists. Changing this forces a new resource to be created.
    logic_app_integration_account_id str
    The ID of the integration account linked by this Logic App Workflow.
    name str
    Specifies the name of the Logic App Workflow. Changing this forces a new resource to be created.
    parameters Mapping[str, str]

    A map of Key-Value pairs.

    NOTE: Any parameters specified must exist in the Schema defined in workflow_parameters.

    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    workflow_parameters Mapping[str, str]
    Specifies a map of Key-Value pairs of the Parameter Definitions to use for this Logic App Workflow. The key is the parameter name, and the value is a JSON encoded string of the parameter definition (see: https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language#parameters).
    workflow_schema str
    Specifies the Schema to use for this Logic App Workflow. Defaults to https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#. Changing this forces a new resource to be created.
    workflow_version str
    Specifies the version of the Schema used for this Logic App Workflow. Defaults to 1.0.0.0. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the Resource Group in which the Logic App Workflow should be created. Changing this forces a new resource to be created.
    accessControl Property Map
    A access_control block as defined below.
    enabled Boolean
    Is the Logic App Workflow enabled? Defaults to true.
    identity Property Map
    An identity block as defined below.
    integrationServiceEnvironmentId String
    The ID of the Integration Service Environment to which this Logic App Workflow belongs. Changing this forces a new Logic App Workflow to be created.
    location String
    Specifies the supported Azure location where the Logic App Workflow exists. Changing this forces a new resource to be created.
    logicAppIntegrationAccountId String
    The ID of the integration account linked by this Logic App Workflow.
    name String
    Specifies the name of the Logic App Workflow. Changing this forces a new resource to be created.
    parameters Map<String>

    A map of Key-Value pairs.

    NOTE: Any parameters specified must exist in the Schema defined in workflow_parameters.

    tags Map<String>
    A mapping of tags to assign to the resource.
    workflowParameters Map<String>
    Specifies a map of Key-Value pairs of the Parameter Definitions to use for this Logic App Workflow. The key is the parameter name, and the value is a JSON encoded string of the parameter definition (see: https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language#parameters).
    workflowSchema String
    Specifies the Schema to use for this Logic App Workflow. Defaults to https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#. Changing this forces a new resource to be created.
    workflowVersion String
    Specifies the version of the Schema used for this Logic App Workflow. Defaults to 1.0.0.0. Changing this forces a new resource to be created.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Workflow resource produces the following output properties:

    AccessEndpoint string
    The Access Endpoint for the Logic App Workflow.
    ConnectorEndpointIpAddresses List<string>
    The list of access endpoint IP addresses of connector.
    ConnectorOutboundIpAddresses List<string>
    The list of outgoing IP addresses of connector.
    Id string
    The provider-assigned unique ID for this managed resource.
    WorkflowEndpointIpAddresses List<string>
    The list of access endpoint IP addresses of workflow.
    WorkflowOutboundIpAddresses List<string>
    The list of outgoing IP addresses of workflow.
    AccessEndpoint string
    The Access Endpoint for the Logic App Workflow.
    ConnectorEndpointIpAddresses []string
    The list of access endpoint IP addresses of connector.
    ConnectorOutboundIpAddresses []string
    The list of outgoing IP addresses of connector.
    Id string
    The provider-assigned unique ID for this managed resource.
    WorkflowEndpointIpAddresses []string
    The list of access endpoint IP addresses of workflow.
    WorkflowOutboundIpAddresses []string
    The list of outgoing IP addresses of workflow.
    accessEndpoint String
    The Access Endpoint for the Logic App Workflow.
    connectorEndpointIpAddresses List<String>
    The list of access endpoint IP addresses of connector.
    connectorOutboundIpAddresses List<String>
    The list of outgoing IP addresses of connector.
    id String
    The provider-assigned unique ID for this managed resource.
    workflowEndpointIpAddresses List<String>
    The list of access endpoint IP addresses of workflow.
    workflowOutboundIpAddresses List<String>
    The list of outgoing IP addresses of workflow.
    accessEndpoint string
    The Access Endpoint for the Logic App Workflow.
    connectorEndpointIpAddresses string[]
    The list of access endpoint IP addresses of connector.
    connectorOutboundIpAddresses string[]
    The list of outgoing IP addresses of connector.
    id string
    The provider-assigned unique ID for this managed resource.
    workflowEndpointIpAddresses string[]
    The list of access endpoint IP addresses of workflow.
    workflowOutboundIpAddresses string[]
    The list of outgoing IP addresses of workflow.
    access_endpoint str
    The Access Endpoint for the Logic App Workflow.
    connector_endpoint_ip_addresses Sequence[str]
    The list of access endpoint IP addresses of connector.
    connector_outbound_ip_addresses Sequence[str]
    The list of outgoing IP addresses of connector.
    id str
    The provider-assigned unique ID for this managed resource.
    workflow_endpoint_ip_addresses Sequence[str]
    The list of access endpoint IP addresses of workflow.
    workflow_outbound_ip_addresses Sequence[str]
    The list of outgoing IP addresses of workflow.
    accessEndpoint String
    The Access Endpoint for the Logic App Workflow.
    connectorEndpointIpAddresses List<String>
    The list of access endpoint IP addresses of connector.
    connectorOutboundIpAddresses List<String>
    The list of outgoing IP addresses of connector.
    id String
    The provider-assigned unique ID for this managed resource.
    workflowEndpointIpAddresses List<String>
    The list of access endpoint IP addresses of workflow.
    workflowOutboundIpAddresses List<String>
    The list of outgoing IP addresses of workflow.

    Look up Existing Workflow Resource

    Get an existing Workflow resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: WorkflowState, opts?: CustomResourceOptions): Workflow
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_control: Optional[WorkflowAccessControlArgs] = None,
            access_endpoint: Optional[str] = None,
            connector_endpoint_ip_addresses: Optional[Sequence[str]] = None,
            connector_outbound_ip_addresses: Optional[Sequence[str]] = None,
            enabled: Optional[bool] = None,
            identity: Optional[WorkflowIdentityArgs] = None,
            integration_service_environment_id: Optional[str] = None,
            location: Optional[str] = None,
            logic_app_integration_account_id: Optional[str] = None,
            name: Optional[str] = None,
            parameters: Optional[Mapping[str, str]] = None,
            resource_group_name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            workflow_endpoint_ip_addresses: Optional[Sequence[str]] = None,
            workflow_outbound_ip_addresses: Optional[Sequence[str]] = None,
            workflow_parameters: Optional[Mapping[str, str]] = None,
            workflow_schema: Optional[str] = None,
            workflow_version: Optional[str] = None) -> Workflow
    func GetWorkflow(ctx *Context, name string, id IDInput, state *WorkflowState, opts ...ResourceOption) (*Workflow, error)
    public static Workflow Get(string name, Input<string> id, WorkflowState? state, CustomResourceOptions? opts = null)
    public static Workflow get(String name, Output<String> id, WorkflowState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AccessControl WorkflowAccessControl
    A access_control block as defined below.
    AccessEndpoint string
    The Access Endpoint for the Logic App Workflow.
    ConnectorEndpointIpAddresses List<string>
    The list of access endpoint IP addresses of connector.
    ConnectorOutboundIpAddresses List<string>
    The list of outgoing IP addresses of connector.
    Enabled bool
    Is the Logic App Workflow enabled? Defaults to true.
    Identity WorkflowIdentity
    An identity block as defined below.
    IntegrationServiceEnvironmentId string
    The ID of the Integration Service Environment to which this Logic App Workflow belongs. Changing this forces a new Logic App Workflow to be created.
    Location string
    Specifies the supported Azure location where the Logic App Workflow exists. Changing this forces a new resource to be created.
    LogicAppIntegrationAccountId string
    The ID of the integration account linked by this Logic App Workflow.
    Name string
    Specifies the name of the Logic App Workflow. Changing this forces a new resource to be created.
    Parameters Dictionary<string, string>

    A map of Key-Value pairs.

    NOTE: Any parameters specified must exist in the Schema defined in workflow_parameters.

    ResourceGroupName string
    The name of the Resource Group in which the Logic App Workflow should be created. Changing this forces a new resource to be created.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    WorkflowEndpointIpAddresses List<string>
    The list of access endpoint IP addresses of workflow.
    WorkflowOutboundIpAddresses List<string>
    The list of outgoing IP addresses of workflow.
    WorkflowParameters Dictionary<string, string>
    Specifies a map of Key-Value pairs of the Parameter Definitions to use for this Logic App Workflow. The key is the parameter name, and the value is a JSON encoded string of the parameter definition (see: https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language#parameters).
    WorkflowSchema string
    Specifies the Schema to use for this Logic App Workflow. Defaults to https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#. Changing this forces a new resource to be created.
    WorkflowVersion string
    Specifies the version of the Schema used for this Logic App Workflow. Defaults to 1.0.0.0. Changing this forces a new resource to be created.
    AccessControl WorkflowAccessControlArgs
    A access_control block as defined below.
    AccessEndpoint string
    The Access Endpoint for the Logic App Workflow.
    ConnectorEndpointIpAddresses []string
    The list of access endpoint IP addresses of connector.
    ConnectorOutboundIpAddresses []string
    The list of outgoing IP addresses of connector.
    Enabled bool
    Is the Logic App Workflow enabled? Defaults to true.
    Identity WorkflowIdentityArgs
    An identity block as defined below.
    IntegrationServiceEnvironmentId string
    The ID of the Integration Service Environment to which this Logic App Workflow belongs. Changing this forces a new Logic App Workflow to be created.
    Location string
    Specifies the supported Azure location where the Logic App Workflow exists. Changing this forces a new resource to be created.
    LogicAppIntegrationAccountId string
    The ID of the integration account linked by this Logic App Workflow.
    Name string
    Specifies the name of the Logic App Workflow. Changing this forces a new resource to be created.
    Parameters map[string]string

    A map of Key-Value pairs.

    NOTE: Any parameters specified must exist in the Schema defined in workflow_parameters.

    ResourceGroupName string
    The name of the Resource Group in which the Logic App Workflow should be created. Changing this forces a new resource to be created.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    WorkflowEndpointIpAddresses []string
    The list of access endpoint IP addresses of workflow.
    WorkflowOutboundIpAddresses []string
    The list of outgoing IP addresses of workflow.
    WorkflowParameters map[string]string
    Specifies a map of Key-Value pairs of the Parameter Definitions to use for this Logic App Workflow. The key is the parameter name, and the value is a JSON encoded string of the parameter definition (see: https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language#parameters).
    WorkflowSchema string
    Specifies the Schema to use for this Logic App Workflow. Defaults to https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#. Changing this forces a new resource to be created.
    WorkflowVersion string
    Specifies the version of the Schema used for this Logic App Workflow. Defaults to 1.0.0.0. Changing this forces a new resource to be created.
    accessControl WorkflowAccessControl
    A access_control block as defined below.
    accessEndpoint String
    The Access Endpoint for the Logic App Workflow.
    connectorEndpointIpAddresses List<String>
    The list of access endpoint IP addresses of connector.
    connectorOutboundIpAddresses List<String>
    The list of outgoing IP addresses of connector.
    enabled Boolean
    Is the Logic App Workflow enabled? Defaults to true.
    identity WorkflowIdentity
    An identity block as defined below.
    integrationServiceEnvironmentId String
    The ID of the Integration Service Environment to which this Logic App Workflow belongs. Changing this forces a new Logic App Workflow to be created.
    location String
    Specifies the supported Azure location where the Logic App Workflow exists. Changing this forces a new resource to be created.
    logicAppIntegrationAccountId String
    The ID of the integration account linked by this Logic App Workflow.
    name String
    Specifies the name of the Logic App Workflow. Changing this forces a new resource to be created.
    parameters Map<String,String>

    A map of Key-Value pairs.

    NOTE: Any parameters specified must exist in the Schema defined in workflow_parameters.

    resourceGroupName String
    The name of the Resource Group in which the Logic App Workflow should be created. Changing this forces a new resource to be created.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    workflowEndpointIpAddresses List<String>
    The list of access endpoint IP addresses of workflow.
    workflowOutboundIpAddresses List<String>
    The list of outgoing IP addresses of workflow.
    workflowParameters Map<String,String>
    Specifies a map of Key-Value pairs of the Parameter Definitions to use for this Logic App Workflow. The key is the parameter name, and the value is a JSON encoded string of the parameter definition (see: https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language#parameters).
    workflowSchema String
    Specifies the Schema to use for this Logic App Workflow. Defaults to https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#. Changing this forces a new resource to be created.
    workflowVersion String
    Specifies the version of the Schema used for this Logic App Workflow. Defaults to 1.0.0.0. Changing this forces a new resource to be created.
    accessControl WorkflowAccessControl
    A access_control block as defined below.
    accessEndpoint string
    The Access Endpoint for the Logic App Workflow.
    connectorEndpointIpAddresses string[]
    The list of access endpoint IP addresses of connector.
    connectorOutboundIpAddresses string[]
    The list of outgoing IP addresses of connector.
    enabled boolean
    Is the Logic App Workflow enabled? Defaults to true.
    identity WorkflowIdentity
    An identity block as defined below.
    integrationServiceEnvironmentId string
    The ID of the Integration Service Environment to which this Logic App Workflow belongs. Changing this forces a new Logic App Workflow to be created.
    location string
    Specifies the supported Azure location where the Logic App Workflow exists. Changing this forces a new resource to be created.
    logicAppIntegrationAccountId string
    The ID of the integration account linked by this Logic App Workflow.
    name string
    Specifies the name of the Logic App Workflow. Changing this forces a new resource to be created.
    parameters {[key: string]: string}

    A map of Key-Value pairs.

    NOTE: Any parameters specified must exist in the Schema defined in workflow_parameters.

    resourceGroupName string
    The name of the Resource Group in which the Logic App Workflow should be created. Changing this forces a new resource to be created.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    workflowEndpointIpAddresses string[]
    The list of access endpoint IP addresses of workflow.
    workflowOutboundIpAddresses string[]
    The list of outgoing IP addresses of workflow.
    workflowParameters {[key: string]: string}
    Specifies a map of Key-Value pairs of the Parameter Definitions to use for this Logic App Workflow. The key is the parameter name, and the value is a JSON encoded string of the parameter definition (see: https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language#parameters).
    workflowSchema string
    Specifies the Schema to use for this Logic App Workflow. Defaults to https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#. Changing this forces a new resource to be created.
    workflowVersion string
    Specifies the version of the Schema used for this Logic App Workflow. Defaults to 1.0.0.0. Changing this forces a new resource to be created.
    access_control WorkflowAccessControlArgs
    A access_control block as defined below.
    access_endpoint str
    The Access Endpoint for the Logic App Workflow.
    connector_endpoint_ip_addresses Sequence[str]
    The list of access endpoint IP addresses of connector.
    connector_outbound_ip_addresses Sequence[str]
    The list of outgoing IP addresses of connector.
    enabled bool
    Is the Logic App Workflow enabled? Defaults to true.
    identity WorkflowIdentityArgs
    An identity block as defined below.
    integration_service_environment_id str
    The ID of the Integration Service Environment to which this Logic App Workflow belongs. Changing this forces a new Logic App Workflow to be created.
    location str
    Specifies the supported Azure location where the Logic App Workflow exists. Changing this forces a new resource to be created.
    logic_app_integration_account_id str
    The ID of the integration account linked by this Logic App Workflow.
    name str
    Specifies the name of the Logic App Workflow. Changing this forces a new resource to be created.
    parameters Mapping[str, str]

    A map of Key-Value pairs.

    NOTE: Any parameters specified must exist in the Schema defined in workflow_parameters.

    resource_group_name str
    The name of the Resource Group in which the Logic App Workflow should be created. Changing this forces a new resource to be created.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    workflow_endpoint_ip_addresses Sequence[str]
    The list of access endpoint IP addresses of workflow.
    workflow_outbound_ip_addresses Sequence[str]
    The list of outgoing IP addresses of workflow.
    workflow_parameters Mapping[str, str]
    Specifies a map of Key-Value pairs of the Parameter Definitions to use for this Logic App Workflow. The key is the parameter name, and the value is a JSON encoded string of the parameter definition (see: https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language#parameters).
    workflow_schema str
    Specifies the Schema to use for this Logic App Workflow. Defaults to https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#. Changing this forces a new resource to be created.
    workflow_version str
    Specifies the version of the Schema used for this Logic App Workflow. Defaults to 1.0.0.0. Changing this forces a new resource to be created.
    accessControl Property Map
    A access_control block as defined below.
    accessEndpoint String
    The Access Endpoint for the Logic App Workflow.
    connectorEndpointIpAddresses List<String>
    The list of access endpoint IP addresses of connector.
    connectorOutboundIpAddresses List<String>
    The list of outgoing IP addresses of connector.
    enabled Boolean
    Is the Logic App Workflow enabled? Defaults to true.
    identity Property Map
    An identity block as defined below.
    integrationServiceEnvironmentId String
    The ID of the Integration Service Environment to which this Logic App Workflow belongs. Changing this forces a new Logic App Workflow to be created.
    location String
    Specifies the supported Azure location where the Logic App Workflow exists. Changing this forces a new resource to be created.
    logicAppIntegrationAccountId String
    The ID of the integration account linked by this Logic App Workflow.
    name String
    Specifies the name of the Logic App Workflow. Changing this forces a new resource to be created.
    parameters Map<String>

    A map of Key-Value pairs.

    NOTE: Any parameters specified must exist in the Schema defined in workflow_parameters.

    resourceGroupName String
    The name of the Resource Group in which the Logic App Workflow should be created. Changing this forces a new resource to be created.
    tags Map<String>
    A mapping of tags to assign to the resource.
    workflowEndpointIpAddresses List<String>
    The list of access endpoint IP addresses of workflow.
    workflowOutboundIpAddresses List<String>
    The list of outgoing IP addresses of workflow.
    workflowParameters Map<String>
    Specifies a map of Key-Value pairs of the Parameter Definitions to use for this Logic App Workflow. The key is the parameter name, and the value is a JSON encoded string of the parameter definition (see: https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language#parameters).
    workflowSchema String
    Specifies the Schema to use for this Logic App Workflow. Defaults to https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#. Changing this forces a new resource to be created.
    workflowVersion String
    Specifies the version of the Schema used for this Logic App Workflow. Defaults to 1.0.0.0. Changing this forces a new resource to be created.

    Supporting Types

    WorkflowAccessControl, WorkflowAccessControlArgs

    Action WorkflowAccessControlAction
    A action block as defined below.
    Content WorkflowAccessControlContent
    A content block as defined below.
    Trigger WorkflowAccessControlTrigger
    A trigger block as defined below.
    WorkflowManagement WorkflowAccessControlWorkflowManagement
    A workflow_management block as defined below.
    Action WorkflowAccessControlAction
    A action block as defined below.
    Content WorkflowAccessControlContent
    A content block as defined below.
    Trigger WorkflowAccessControlTrigger
    A trigger block as defined below.
    WorkflowManagement WorkflowAccessControlWorkflowManagement
    A workflow_management block as defined below.
    action WorkflowAccessControlAction
    A action block as defined below.
    content WorkflowAccessControlContent
    A content block as defined below.
    trigger WorkflowAccessControlTrigger
    A trigger block as defined below.
    workflowManagement WorkflowAccessControlWorkflowManagement
    A workflow_management block as defined below.
    action WorkflowAccessControlAction
    A action block as defined below.
    content WorkflowAccessControlContent
    A content block as defined below.
    trigger WorkflowAccessControlTrigger
    A trigger block as defined below.
    workflowManagement WorkflowAccessControlWorkflowManagement
    A workflow_management block as defined below.
    action WorkflowAccessControlAction
    A action block as defined below.
    content WorkflowAccessControlContent
    A content block as defined below.
    trigger WorkflowAccessControlTrigger
    A trigger block as defined below.
    workflow_management WorkflowAccessControlWorkflowManagement
    A workflow_management block as defined below.
    action Property Map
    A action block as defined below.
    content Property Map
    A content block as defined below.
    trigger Property Map
    A trigger block as defined below.
    workflowManagement Property Map
    A workflow_management block as defined below.

    WorkflowAccessControlAction, WorkflowAccessControlActionArgs

    AllowedCallerIpAddressRanges List<string>
    A list of the allowed caller IP address ranges.
    AllowedCallerIpAddressRanges []string
    A list of the allowed caller IP address ranges.
    allowedCallerIpAddressRanges List<String>
    A list of the allowed caller IP address ranges.
    allowedCallerIpAddressRanges string[]
    A list of the allowed caller IP address ranges.
    allowed_caller_ip_address_ranges Sequence[str]
    A list of the allowed caller IP address ranges.
    allowedCallerIpAddressRanges List<String>
    A list of the allowed caller IP address ranges.

    WorkflowAccessControlContent, WorkflowAccessControlContentArgs

    AllowedCallerIpAddressRanges List<string>
    A list of the allowed caller IP address ranges.
    AllowedCallerIpAddressRanges []string
    A list of the allowed caller IP address ranges.
    allowedCallerIpAddressRanges List<String>
    A list of the allowed caller IP address ranges.
    allowedCallerIpAddressRanges string[]
    A list of the allowed caller IP address ranges.
    allowed_caller_ip_address_ranges Sequence[str]
    A list of the allowed caller IP address ranges.
    allowedCallerIpAddressRanges List<String>
    A list of the allowed caller IP address ranges.

    WorkflowAccessControlTrigger, WorkflowAccessControlTriggerArgs

    AllowedCallerIpAddressRanges List<string>
    A list of the allowed caller IP address ranges.
    OpenAuthenticationPolicies List<WorkflowAccessControlTriggerOpenAuthenticationPolicy>
    A open_authentication_policy block as defined below.
    AllowedCallerIpAddressRanges []string
    A list of the allowed caller IP address ranges.
    OpenAuthenticationPolicies []WorkflowAccessControlTriggerOpenAuthenticationPolicy
    A open_authentication_policy block as defined below.
    allowedCallerIpAddressRanges List<String>
    A list of the allowed caller IP address ranges.
    openAuthenticationPolicies List<WorkflowAccessControlTriggerOpenAuthenticationPolicy>
    A open_authentication_policy block as defined below.
    allowedCallerIpAddressRanges string[]
    A list of the allowed caller IP address ranges.
    openAuthenticationPolicies WorkflowAccessControlTriggerOpenAuthenticationPolicy[]
    A open_authentication_policy block as defined below.
    allowed_caller_ip_address_ranges Sequence[str]
    A list of the allowed caller IP address ranges.
    open_authentication_policies Sequence[WorkflowAccessControlTriggerOpenAuthenticationPolicy]
    A open_authentication_policy block as defined below.
    allowedCallerIpAddressRanges List<String>
    A list of the allowed caller IP address ranges.
    openAuthenticationPolicies List<Property Map>
    A open_authentication_policy block as defined below.

    WorkflowAccessControlTriggerOpenAuthenticationPolicy, WorkflowAccessControlTriggerOpenAuthenticationPolicyArgs

    Claims List<WorkflowAccessControlTriggerOpenAuthenticationPolicyClaim>
    A claim block as defined below.
    Name string
    The OAuth policy name for the Logic App Workflow.
    Claims []WorkflowAccessControlTriggerOpenAuthenticationPolicyClaim
    A claim block as defined below.
    Name string
    The OAuth policy name for the Logic App Workflow.
    claims List<WorkflowAccessControlTriggerOpenAuthenticationPolicyClaim>
    A claim block as defined below.
    name String
    The OAuth policy name for the Logic App Workflow.
    claims WorkflowAccessControlTriggerOpenAuthenticationPolicyClaim[]
    A claim block as defined below.
    name string
    The OAuth policy name for the Logic App Workflow.
    claims Sequence[WorkflowAccessControlTriggerOpenAuthenticationPolicyClaim]
    A claim block as defined below.
    name str
    The OAuth policy name for the Logic App Workflow.
    claims List<Property Map>
    A claim block as defined below.
    name String
    The OAuth policy name for the Logic App Workflow.

    WorkflowAccessControlTriggerOpenAuthenticationPolicyClaim, WorkflowAccessControlTriggerOpenAuthenticationPolicyClaimArgs

    Name string
    The name of the OAuth policy claim for the Logic App Workflow.
    Value string
    The value of the OAuth policy claim for the Logic App Workflow.
    Name string
    The name of the OAuth policy claim for the Logic App Workflow.
    Value string
    The value of the OAuth policy claim for the Logic App Workflow.
    name String
    The name of the OAuth policy claim for the Logic App Workflow.
    value String
    The value of the OAuth policy claim for the Logic App Workflow.
    name string
    The name of the OAuth policy claim for the Logic App Workflow.
    value string
    The value of the OAuth policy claim for the Logic App Workflow.
    name str
    The name of the OAuth policy claim for the Logic App Workflow.
    value str
    The value of the OAuth policy claim for the Logic App Workflow.
    name String
    The name of the OAuth policy claim for the Logic App Workflow.
    value String
    The value of the OAuth policy claim for the Logic App Workflow.

    WorkflowAccessControlWorkflowManagement, WorkflowAccessControlWorkflowManagementArgs

    AllowedCallerIpAddressRanges List<string>
    A list of the allowed caller IP address ranges.
    AllowedCallerIpAddressRanges []string
    A list of the allowed caller IP address ranges.
    allowedCallerIpAddressRanges List<String>
    A list of the allowed caller IP address ranges.
    allowedCallerIpAddressRanges string[]
    A list of the allowed caller IP address ranges.
    allowed_caller_ip_address_ranges Sequence[str]
    A list of the allowed caller IP address ranges.
    allowedCallerIpAddressRanges List<String>
    A list of the allowed caller IP address ranges.

    WorkflowIdentity, WorkflowIdentityArgs

    Type string
    Specifies the type of Managed Service Identity that should be configured on this Logic App Workflow. Possible values are SystemAssigned, UserAssigned.
    IdentityIds List<string>

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Logic App Workflow.

    NOTE: This is required when type is set to UserAssigned

    PrincipalId string
    The Principal ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
    TenantId string
    The Tenant ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
    Type string
    Specifies the type of Managed Service Identity that should be configured on this Logic App Workflow. Possible values are SystemAssigned, UserAssigned.
    IdentityIds []string

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Logic App Workflow.

    NOTE: This is required when type is set to UserAssigned

    PrincipalId string
    The Principal ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
    TenantId string
    The Tenant ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
    type String
    Specifies the type of Managed Service Identity that should be configured on this Logic App Workflow. Possible values are SystemAssigned, UserAssigned.
    identityIds List<String>

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Logic App Workflow.

    NOTE: This is required when type is set to UserAssigned

    principalId String
    The Principal ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
    tenantId String
    The Tenant ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
    type string
    Specifies the type of Managed Service Identity that should be configured on this Logic App Workflow. Possible values are SystemAssigned, UserAssigned.
    identityIds string[]

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Logic App Workflow.

    NOTE: This is required when type is set to UserAssigned

    principalId string
    The Principal ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
    tenantId string
    The Tenant ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
    type str
    Specifies the type of Managed Service Identity that should be configured on this Logic App Workflow. Possible values are SystemAssigned, UserAssigned.
    identity_ids Sequence[str]

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Logic App Workflow.

    NOTE: This is required when type is set to UserAssigned

    principal_id str
    The Principal ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
    tenant_id str
    The Tenant ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
    type String
    Specifies the type of Managed Service Identity that should be configured on this Logic App Workflow. Possible values are SystemAssigned, UserAssigned.
    identityIds List<String>

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Logic App Workflow.

    NOTE: This is required when type is set to UserAssigned

    principalId String
    The Principal ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
    tenantId String
    The Tenant ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.

    Import

    Logic App Workflows can be imported using the resource id, e.g.

    $ pulumi import azure:logicapps/workflow:Workflow workflow1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Logic/workflows/workflow1
    

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi