We recommend using Azure Native.
azure.logicapps.Workflow
Explore with Pulumi AI
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/v6/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v6/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
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Workflow(name: string, args: WorkflowArgs, opts?: CustomResourceOptions);
@overload
def Workflow(resource_name: str,
args: WorkflowArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Workflow(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
name: Optional[str] = None,
identity: Optional[WorkflowIdentityArgs] = None,
integration_service_environment_id: Optional[str] = None,
location: Optional[str] = None,
logic_app_integration_account_id: Optional[str] = None,
access_control: Optional[WorkflowAccessControlArgs] = None,
parameters: Optional[Mapping[str, str]] = None,
enabled: Optional[bool] = None,
tags: Optional[Mapping[str, str]] = None,
workflow_parameters: Optional[Mapping[str, str]] = None,
workflow_schema: Optional[str] = None,
workflow_version: Optional[str] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var workflowResource = new Azure.LogicApps.Workflow("workflowResource", new()
{
ResourceGroupName = "string",
Name = "string",
Identity = new Azure.LogicApps.Inputs.WorkflowIdentityArgs
{
Type = "string",
IdentityIds = new[]
{
"string",
},
PrincipalId = "string",
TenantId = "string",
},
IntegrationServiceEnvironmentId = "string",
Location = "string",
LogicAppIntegrationAccountId = "string",
AccessControl = new Azure.LogicApps.Inputs.WorkflowAccessControlArgs
{
Action = new Azure.LogicApps.Inputs.WorkflowAccessControlActionArgs
{
AllowedCallerIpAddressRanges = new[]
{
"string",
},
},
Content = new Azure.LogicApps.Inputs.WorkflowAccessControlContentArgs
{
AllowedCallerIpAddressRanges = new[]
{
"string",
},
},
Trigger = new Azure.LogicApps.Inputs.WorkflowAccessControlTriggerArgs
{
AllowedCallerIpAddressRanges = new[]
{
"string",
},
OpenAuthenticationPolicies = new[]
{
new Azure.LogicApps.Inputs.WorkflowAccessControlTriggerOpenAuthenticationPolicyArgs
{
Claims = new[]
{
new Azure.LogicApps.Inputs.WorkflowAccessControlTriggerOpenAuthenticationPolicyClaimArgs
{
Name = "string",
Value = "string",
},
},
Name = "string",
},
},
},
WorkflowManagement = new Azure.LogicApps.Inputs.WorkflowAccessControlWorkflowManagementArgs
{
AllowedCallerIpAddressRanges = new[]
{
"string",
},
},
},
Parameters =
{
{ "string", "string" },
},
Enabled = false,
Tags =
{
{ "string", "string" },
},
WorkflowParameters =
{
{ "string", "string" },
},
WorkflowSchema = "string",
WorkflowVersion = "string",
});
example, err := logicapps.NewWorkflow(ctx, "workflowResource", &logicapps.WorkflowArgs{
ResourceGroupName: pulumi.String("string"),
Name: pulumi.String("string"),
Identity: &logicapps.WorkflowIdentityArgs{
Type: pulumi.String("string"),
IdentityIds: pulumi.StringArray{
pulumi.String("string"),
},
PrincipalId: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
IntegrationServiceEnvironmentId: pulumi.String("string"),
Location: pulumi.String("string"),
LogicAppIntegrationAccountId: pulumi.String("string"),
AccessControl: &logicapps.WorkflowAccessControlArgs{
Action: &logicapps.WorkflowAccessControlActionArgs{
AllowedCallerIpAddressRanges: pulumi.StringArray{
pulumi.String("string"),
},
},
Content: &logicapps.WorkflowAccessControlContentArgs{
AllowedCallerIpAddressRanges: pulumi.StringArray{
pulumi.String("string"),
},
},
Trigger: &logicapps.WorkflowAccessControlTriggerArgs{
AllowedCallerIpAddressRanges: pulumi.StringArray{
pulumi.String("string"),
},
OpenAuthenticationPolicies: logicapps.WorkflowAccessControlTriggerOpenAuthenticationPolicyArray{
&logicapps.WorkflowAccessControlTriggerOpenAuthenticationPolicyArgs{
Claims: logicapps.WorkflowAccessControlTriggerOpenAuthenticationPolicyClaimArray{
&logicapps.WorkflowAccessControlTriggerOpenAuthenticationPolicyClaimArgs{
Name: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
},
},
},
WorkflowManagement: &logicapps.WorkflowAccessControlWorkflowManagementArgs{
AllowedCallerIpAddressRanges: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Parameters: pulumi.StringMap{
"string": pulumi.String("string"),
},
Enabled: pulumi.Bool(false),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
WorkflowParameters: pulumi.StringMap{
"string": pulumi.String("string"),
},
WorkflowSchema: pulumi.String("string"),
WorkflowVersion: pulumi.String("string"),
})
var workflowResource = new Workflow("workflowResource", WorkflowArgs.builder()
.resourceGroupName("string")
.name("string")
.identity(WorkflowIdentityArgs.builder()
.type("string")
.identityIds("string")
.principalId("string")
.tenantId("string")
.build())
.integrationServiceEnvironmentId("string")
.location("string")
.logicAppIntegrationAccountId("string")
.accessControl(WorkflowAccessControlArgs.builder()
.action(WorkflowAccessControlActionArgs.builder()
.allowedCallerIpAddressRanges("string")
.build())
.content(WorkflowAccessControlContentArgs.builder()
.allowedCallerIpAddressRanges("string")
.build())
.trigger(WorkflowAccessControlTriggerArgs.builder()
.allowedCallerIpAddressRanges("string")
.openAuthenticationPolicies(WorkflowAccessControlTriggerOpenAuthenticationPolicyArgs.builder()
.claims(WorkflowAccessControlTriggerOpenAuthenticationPolicyClaimArgs.builder()
.name("string")
.value("string")
.build())
.name("string")
.build())
.build())
.workflowManagement(WorkflowAccessControlWorkflowManagementArgs.builder()
.allowedCallerIpAddressRanges("string")
.build())
.build())
.parameters(Map.of("string", "string"))
.enabled(false)
.tags(Map.of("string", "string"))
.workflowParameters(Map.of("string", "string"))
.workflowSchema("string")
.workflowVersion("string")
.build());
workflow_resource = azure.logicapps.Workflow("workflowResource",
resource_group_name="string",
name="string",
identity={
"type": "string",
"identity_ids": ["string"],
"principal_id": "string",
"tenant_id": "string",
},
integration_service_environment_id="string",
location="string",
logic_app_integration_account_id="string",
access_control={
"action": {
"allowed_caller_ip_address_ranges": ["string"],
},
"content": {
"allowed_caller_ip_address_ranges": ["string"],
},
"trigger": {
"allowed_caller_ip_address_ranges": ["string"],
"open_authentication_policies": [{
"claims": [{
"name": "string",
"value": "string",
}],
"name": "string",
}],
},
"workflow_management": {
"allowed_caller_ip_address_ranges": ["string"],
},
},
parameters={
"string": "string",
},
enabled=False,
tags={
"string": "string",
},
workflow_parameters={
"string": "string",
},
workflow_schema="string",
workflow_version="string")
const workflowResource = new azure.logicapps.Workflow("workflowResource", {
resourceGroupName: "string",
name: "string",
identity: {
type: "string",
identityIds: ["string"],
principalId: "string",
tenantId: "string",
},
integrationServiceEnvironmentId: "string",
location: "string",
logicAppIntegrationAccountId: "string",
accessControl: {
action: {
allowedCallerIpAddressRanges: ["string"],
},
content: {
allowedCallerIpAddressRanges: ["string"],
},
trigger: {
allowedCallerIpAddressRanges: ["string"],
openAuthenticationPolicies: [{
claims: [{
name: "string",
value: "string",
}],
name: "string",
}],
},
workflowManagement: {
allowedCallerIpAddressRanges: ["string"],
},
},
parameters: {
string: "string",
},
enabled: false,
tags: {
string: "string",
},
workflowParameters: {
string: "string",
},
workflowSchema: "string",
workflowVersion: "string",
});
type: azure:logicapps:Workflow
properties:
accessControl:
action:
allowedCallerIpAddressRanges:
- string
content:
allowedCallerIpAddressRanges:
- string
trigger:
allowedCallerIpAddressRanges:
- string
openAuthenticationPolicies:
- claims:
- name: string
value: string
name: string
workflowManagement:
allowedCallerIpAddressRanges:
- string
enabled: false
identity:
identityIds:
- string
principalId: string
tenantId: string
type: string
integrationServiceEnvironmentId: string
location: string
logicAppIntegrationAccountId: string
name: string
parameters:
string: string
resourceGroupName: string
tags:
string: string
workflowParameters:
string: string
workflowSchema: string
workflowVersion: string
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Workflow resource accepts the following input properties:
- Resource
Group stringName - 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 WorkflowAccess Control - A
access_control
block as defined below. - Enabled bool
- Is the Logic App Workflow enabled? Defaults to
true
. - Identity
Workflow
Identity - An
identity
block as defined below. - Integration
Service stringEnvironment Id - 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.
- Logic
App stringIntegration Account Id - 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
.- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Workflow
Parameters 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).
- Workflow
Schema 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. - Workflow
Version 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 stringName - 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 WorkflowAccess Control Args - A
access_control
block as defined below. - Enabled bool
- Is the Logic App Workflow enabled? Defaults to
true
. - Identity
Workflow
Identity Args - An
identity
block as defined below. - Integration
Service stringEnvironment Id - 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.
- Logic
App stringIntegration Account Id - 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
.- map[string]string
- A mapping of tags to assign to the resource.
- Workflow
Parameters 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).
- Workflow
Schema 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. - Workflow
Version 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 StringName - 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 WorkflowAccess Control - A
access_control
block as defined below. - enabled Boolean
- Is the Logic App Workflow enabled? Defaults to
true
. - identity
Workflow
Identity - An
identity
block as defined below. - integration
Service StringEnvironment Id - 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.
- logic
App StringIntegration Account Id - 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
.- Map<String,String>
- A mapping of tags to assign to the resource.
- workflow
Parameters 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).
- workflow
Schema 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. - workflow
Version 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 stringName - 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 WorkflowAccess Control - A
access_control
block as defined below. - enabled boolean
- Is the Logic App Workflow enabled? Defaults to
true
. - identity
Workflow
Identity - An
identity
block as defined below. - integration
Service stringEnvironment Id - 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.
- logic
App stringIntegration Account Id - 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
.- {[key: string]: string}
- A mapping of tags to assign to the resource.
- workflow
Parameters {[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).
- workflow
Schema 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. - workflow
Version 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_ strname - 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 WorkflowAccess Control Args - A
access_control
block as defined below. - enabled bool
- Is the Logic App Workflow enabled? Defaults to
true
. - identity
Workflow
Identity Args - An
identity
block as defined below. - integration_
service_ strenvironment_ id - 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_ strintegration_ account_ id - 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
.- 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.
- resource
Group StringName - 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 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. - integration
Service StringEnvironment Id - 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.
- logic
App StringIntegration Account Id - 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
.- Map<String>
- A mapping of tags to assign to the resource.
- workflow
Parameters 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).
- workflow
Schema 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. - workflow
Version 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:
- Access
Endpoint string - The Access Endpoint for the Logic App Workflow.
- Connector
Endpoint List<string>Ip Addresses - The list of access endpoint IP addresses of connector.
- Connector
Outbound List<string>Ip Addresses - The list of outgoing IP addresses of connector.
- Id string
- The provider-assigned unique ID for this managed resource.
- Workflow
Endpoint List<string>Ip Addresses - The list of access endpoint IP addresses of workflow.
- Workflow
Outbound List<string>Ip Addresses - The list of outgoing IP addresses of workflow.
- Access
Endpoint string - The Access Endpoint for the Logic App Workflow.
- Connector
Endpoint []stringIp Addresses - The list of access endpoint IP addresses of connector.
- Connector
Outbound []stringIp Addresses - The list of outgoing IP addresses of connector.
- Id string
- The provider-assigned unique ID for this managed resource.
- Workflow
Endpoint []stringIp Addresses - The list of access endpoint IP addresses of workflow.
- Workflow
Outbound []stringIp Addresses - The list of outgoing IP addresses of workflow.
- access
Endpoint String - The Access Endpoint for the Logic App Workflow.
- connector
Endpoint List<String>Ip Addresses - The list of access endpoint IP addresses of connector.
- connector
Outbound List<String>Ip Addresses - The list of outgoing IP addresses of connector.
- id String
- The provider-assigned unique ID for this managed resource.
- workflow
Endpoint List<String>Ip Addresses - The list of access endpoint IP addresses of workflow.
- workflow
Outbound List<String>Ip Addresses - The list of outgoing IP addresses of workflow.
- access
Endpoint string - The Access Endpoint for the Logic App Workflow.
- connector
Endpoint string[]Ip Addresses - The list of access endpoint IP addresses of connector.
- connector
Outbound string[]Ip Addresses - The list of outgoing IP addresses of connector.
- id string
- The provider-assigned unique ID for this managed resource.
- workflow
Endpoint string[]Ip Addresses - The list of access endpoint IP addresses of workflow.
- workflow
Outbound string[]Ip Addresses - The list of outgoing IP addresses of workflow.
- access_
endpoint str - The Access Endpoint for the Logic App Workflow.
- connector_
endpoint_ Sequence[str]ip_ addresses - The list of access endpoint IP addresses of connector.
- connector_
outbound_ Sequence[str]ip_ addresses - The list of outgoing IP addresses of connector.
- id str
- The provider-assigned unique ID for this managed resource.
- workflow_
endpoint_ Sequence[str]ip_ addresses - The list of access endpoint IP addresses of workflow.
- workflow_
outbound_ Sequence[str]ip_ addresses - The list of outgoing IP addresses of workflow.
- access
Endpoint String - The Access Endpoint for the Logic App Workflow.
- connector
Endpoint List<String>Ip Addresses - The list of access endpoint IP addresses of connector.
- connector
Outbound List<String>Ip Addresses - The list of outgoing IP addresses of connector.
- id String
- The provider-assigned unique ID for this managed resource.
- workflow
Endpoint List<String>Ip Addresses - The list of access endpoint IP addresses of workflow.
- workflow
Outbound List<String>Ip Addresses - 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.
- Access
Control WorkflowAccess Control - A
access_control
block as defined below. - Access
Endpoint string - The Access Endpoint for the Logic App Workflow.
- Connector
Endpoint List<string>Ip Addresses - The list of access endpoint IP addresses of connector.
- Connector
Outbound List<string>Ip Addresses - The list of outgoing IP addresses of connector.
- Enabled bool
- Is the Logic App Workflow enabled? Defaults to
true
. - Identity
Workflow
Identity - An
identity
block as defined below. - Integration
Service stringEnvironment Id - 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.
- Logic
App stringIntegration Account Id - 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
.- Resource
Group stringName - The name of the Resource Group in which the Logic App Workflow should be created. Changing this forces a new resource to be created.
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Workflow
Endpoint List<string>Ip Addresses - The list of access endpoint IP addresses of workflow.
- Workflow
Outbound List<string>Ip Addresses - The list of outgoing IP addresses of workflow.
- Workflow
Parameters 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).
- Workflow
Schema 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. - Workflow
Version 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 WorkflowAccess Control Args - A
access_control
block as defined below. - Access
Endpoint string - The Access Endpoint for the Logic App Workflow.
- Connector
Endpoint []stringIp Addresses - The list of access endpoint IP addresses of connector.
- Connector
Outbound []stringIp Addresses - The list of outgoing IP addresses of connector.
- Enabled bool
- Is the Logic App Workflow enabled? Defaults to
true
. - Identity
Workflow
Identity Args - An
identity
block as defined below. - Integration
Service stringEnvironment Id - 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.
- Logic
App stringIntegration Account Id - 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
.- Resource
Group stringName - The name of the Resource Group in which the Logic App Workflow should be created. Changing this forces a new resource to be created.
- map[string]string
- A mapping of tags to assign to the resource.
- Workflow
Endpoint []stringIp Addresses - The list of access endpoint IP addresses of workflow.
- Workflow
Outbound []stringIp Addresses - The list of outgoing IP addresses of workflow.
- Workflow
Parameters 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).
- Workflow
Schema 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. - Workflow
Version 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 WorkflowAccess Control - A
access_control
block as defined below. - access
Endpoint String - The Access Endpoint for the Logic App Workflow.
- connector
Endpoint List<String>Ip Addresses - The list of access endpoint IP addresses of connector.
- connector
Outbound List<String>Ip Addresses - The list of outgoing IP addresses of connector.
- enabled Boolean
- Is the Logic App Workflow enabled? Defaults to
true
. - identity
Workflow
Identity - An
identity
block as defined below. - integration
Service StringEnvironment Id - 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.
- logic
App StringIntegration Account Id - 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
.- resource
Group StringName - The name of the Resource Group in which the Logic App Workflow should be created. Changing this forces a new resource to be created.
- Map<String,String>
- A mapping of tags to assign to the resource.
- workflow
Endpoint List<String>Ip Addresses - The list of access endpoint IP addresses of workflow.
- workflow
Outbound List<String>Ip Addresses - The list of outgoing IP addresses of workflow.
- workflow
Parameters 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).
- workflow
Schema 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. - workflow
Version 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 WorkflowAccess Control - A
access_control
block as defined below. - access
Endpoint string - The Access Endpoint for the Logic App Workflow.
- connector
Endpoint string[]Ip Addresses - The list of access endpoint IP addresses of connector.
- connector
Outbound string[]Ip Addresses - The list of outgoing IP addresses of connector.
- enabled boolean
- Is the Logic App Workflow enabled? Defaults to
true
. - identity
Workflow
Identity - An
identity
block as defined below. - integration
Service stringEnvironment Id - 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.
- logic
App stringIntegration Account Id - 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
.- resource
Group stringName - The name of the Resource Group in which the Logic App Workflow should be created. Changing this forces a new resource to be created.
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- workflow
Endpoint string[]Ip Addresses - The list of access endpoint IP addresses of workflow.
- workflow
Outbound string[]Ip Addresses - The list of outgoing IP addresses of workflow.
- workflow
Parameters {[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).
- workflow
Schema 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. - workflow
Version 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 WorkflowAccess Control Args - A
access_control
block as defined below. - access_
endpoint str - The Access Endpoint for the Logic App Workflow.
- connector_
endpoint_ Sequence[str]ip_ addresses - The list of access endpoint IP addresses of connector.
- connector_
outbound_ Sequence[str]ip_ addresses - The list of outgoing IP addresses of connector.
- enabled bool
- Is the Logic App Workflow enabled? Defaults to
true
. - identity
Workflow
Identity Args - An
identity
block as defined below. - integration_
service_ strenvironment_ id - 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_ strintegration_ account_ id - 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_ strname - The name of the Resource Group in which the Logic App Workflow should be created. Changing this forces a new resource to be created.
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- workflow_
endpoint_ Sequence[str]ip_ addresses - The list of access endpoint IP addresses of workflow.
- workflow_
outbound_ Sequence[str]ip_ addresses - 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.
- access
Control Property Map - A
access_control
block as defined below. - access
Endpoint String - The Access Endpoint for the Logic App Workflow.
- connector
Endpoint List<String>Ip Addresses - The list of access endpoint IP addresses of connector.
- connector
Outbound List<String>Ip Addresses - 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. - integration
Service StringEnvironment Id - 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.
- logic
App StringIntegration Account Id - 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
.- resource
Group StringName - The name of the Resource Group in which the Logic App Workflow should be created. Changing this forces a new resource to be created.
- Map<String>
- A mapping of tags to assign to the resource.
- workflow
Endpoint List<String>Ip Addresses - The list of access endpoint IP addresses of workflow.
- workflow
Outbound List<String>Ip Addresses - The list of outgoing IP addresses of workflow.
- workflow
Parameters 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).
- workflow
Schema 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. - workflow
Version 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
Workflow
Access Control Action - A
action
block as defined below. - Content
Workflow
Access Control Content - A
content
block as defined below. - Trigger
Workflow
Access Control Trigger - A
trigger
block as defined below. - Workflow
Management WorkflowAccess Control Workflow Management - A
workflow_management
block as defined below.
- Action
Workflow
Access Control Action - A
action
block as defined below. - Content
Workflow
Access Control Content - A
content
block as defined below. - Trigger
Workflow
Access Control Trigger - A
trigger
block as defined below. - Workflow
Management WorkflowAccess Control Workflow Management - A
workflow_management
block as defined below.
- action
Workflow
Access Control Action - A
action
block as defined below. - content
Workflow
Access Control Content - A
content
block as defined below. - trigger
Workflow
Access Control Trigger - A
trigger
block as defined below. - workflow
Management WorkflowAccess Control Workflow Management - A
workflow_management
block as defined below.
- action
Workflow
Access Control Action - A
action
block as defined below. - content
Workflow
Access Control Content - A
content
block as defined below. - trigger
Workflow
Access Control Trigger - A
trigger
block as defined below. - workflow
Management WorkflowAccess Control Workflow Management - A
workflow_management
block as defined below.
- action
Workflow
Access Control Action - A
action
block as defined below. - content
Workflow
Access Control Content - A
content
block as defined below. - trigger
Workflow
Access Control Trigger - A
trigger
block as defined below. - workflow_
management WorkflowAccess Control Workflow Management - 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. - workflow
Management Property Map - A
workflow_management
block as defined below.
WorkflowAccessControlAction, WorkflowAccessControlActionArgs
- Allowed
Caller List<string>Ip Address Ranges - A list of the allowed caller IP address ranges.
- Allowed
Caller []stringIp Address Ranges - A list of the allowed caller IP address ranges.
- allowed
Caller List<String>Ip Address Ranges - A list of the allowed caller IP address ranges.
- allowed
Caller string[]Ip Address Ranges - A list of the allowed caller IP address ranges.
- allowed_
caller_ Sequence[str]ip_ address_ ranges - A list of the allowed caller IP address ranges.
- allowed
Caller List<String>Ip Address Ranges - A list of the allowed caller IP address ranges.
WorkflowAccessControlContent, WorkflowAccessControlContentArgs
- Allowed
Caller List<string>Ip Address Ranges - A list of the allowed caller IP address ranges.
- Allowed
Caller []stringIp Address Ranges - A list of the allowed caller IP address ranges.
- allowed
Caller List<String>Ip Address Ranges - A list of the allowed caller IP address ranges.
- allowed
Caller string[]Ip Address Ranges - A list of the allowed caller IP address ranges.
- allowed_
caller_ Sequence[str]ip_ address_ ranges - A list of the allowed caller IP address ranges.
- allowed
Caller List<String>Ip Address Ranges - A list of the allowed caller IP address ranges.
WorkflowAccessControlTrigger, WorkflowAccessControlTriggerArgs
- Allowed
Caller List<string>Ip Address Ranges - A list of the allowed caller IP address ranges.
- Open
Authentication List<WorkflowPolicies Access Control Trigger Open Authentication Policy> - A
open_authentication_policy
block as defined below.
- Allowed
Caller []stringIp Address Ranges - A list of the allowed caller IP address ranges.
- Open
Authentication []WorkflowPolicies Access Control Trigger Open Authentication Policy - A
open_authentication_policy
block as defined below.
- allowed
Caller List<String>Ip Address Ranges - A list of the allowed caller IP address ranges.
- open
Authentication List<WorkflowPolicies Access Control Trigger Open Authentication Policy> - A
open_authentication_policy
block as defined below.
- allowed
Caller string[]Ip Address Ranges - A list of the allowed caller IP address ranges.
- open
Authentication WorkflowPolicies Access Control Trigger Open Authentication Policy[] - A
open_authentication_policy
block as defined below.
- allowed_
caller_ Sequence[str]ip_ address_ ranges - A list of the allowed caller IP address ranges.
- open_
authentication_ Sequence[Workflowpolicies Access Control Trigger Open Authentication Policy] - A
open_authentication_policy
block as defined below.
- allowed
Caller List<String>Ip Address Ranges - A list of the allowed caller IP address ranges.
- open
Authentication List<Property Map>Policies - A
open_authentication_policy
block as defined below.
WorkflowAccessControlTriggerOpenAuthenticationPolicy, WorkflowAccessControlTriggerOpenAuthenticationPolicyArgs
- Claims
List<Workflow
Access Control Trigger Open Authentication Policy Claim> - A
claim
block as defined below. - Name string
- The OAuth policy name for the Logic App Workflow.
- Claims
[]Workflow
Access Control Trigger Open Authentication Policy Claim - A
claim
block as defined below. - Name string
- The OAuth policy name for the Logic App Workflow.
- claims
List<Workflow
Access Control Trigger Open Authentication Policy Claim> - A
claim
block as defined below. - name String
- The OAuth policy name for the Logic App Workflow.
- claims
Workflow
Access Control Trigger Open Authentication Policy Claim[] - A
claim
block as defined below. - name string
- The OAuth policy name for the Logic App Workflow.
- claims
Sequence[Workflow
Access Control Trigger Open Authentication Policy Claim] - 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
WorkflowAccessControlWorkflowManagement, WorkflowAccessControlWorkflowManagementArgs
- Allowed
Caller List<string>Ip Address Ranges - A list of the allowed caller IP address ranges.
- Allowed
Caller []stringIp Address Ranges - A list of the allowed caller IP address ranges.
- allowed
Caller List<String>Ip Address Ranges - A list of the allowed caller IP address ranges.
- allowed
Caller string[]Ip Address Ranges - A list of the allowed caller IP address ranges.
- allowed_
caller_ Sequence[str]ip_ address_ ranges - A list of the allowed caller IP address ranges.
- allowed
Caller List<String>Ip Address Ranges - 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
. - Identity
Ids 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 toUserAssigned
- Principal
Id string - The Principal ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
- Tenant
Id 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
. - Identity
Ids []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 toUserAssigned
- Principal
Id string - The Principal ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
- Tenant
Id 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
. - identity
Ids 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 toUserAssigned
- principal
Id String - The Principal ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
- tenant
Id 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
. - identity
Ids 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 toUserAssigned
- principal
Id string - The Principal ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
- tenant
Id 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 toUserAssigned
- 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
. - identity
Ids 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 toUserAssigned
- principal
Id String - The Principal ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
- tenant
Id 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
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.