Microsoft.App logicApps

Bicep resource definition

The logicApps resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.App/logicApps resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.App/logicApps@2024-10-02-preview' = {
  scope: resourceSymbolicName or scope
  name: 'string'
  properties: any(Azure.Bicep.Types.Concrete.AnyType)
}

Property values

Microsoft.App/logicApps

Name Description Value
name The resource name string

Constraints:
Pattern = ^[-\w\._\(\)]+$ (required)
properties The resource-specific properties for this resource. any
scope Use when creating a resource at a scope that is different than the deployment scope. Set this property to the symbolic name of a resource to apply the extension resource.

ARM template resource definition

The logicApps resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.App/logicApps resource, add the following JSON to your template.

{
  "type": "Microsoft.App/logicApps",
  "apiVersion": "2024-10-02-preview",
  "name": "string",
  "properties": {}
}

Property values

Microsoft.App/logicApps

Name Description Value
apiVersion The api version '2024-10-02-preview'
name The resource name string

Constraints:
Pattern = ^[-\w\._\(\)]+$ (required)
properties The resource-specific properties for this resource. any
type The resource type 'Microsoft.App/logicApps'

Terraform (AzAPI provider) resource definition

The logicApps resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.App/logicApps resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.App/logicApps@2024-10-02-preview"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = ?
  })
}

Property values

Microsoft.App/logicApps

Name Description Value
name The resource name string

Constraints:
Pattern = ^[-\w\._\(\)]+$ (required)
parent_id The ID of the resource to apply this extension resource to. string (required)
properties The resource-specific properties for this resource. any
type The resource type "Microsoft.App/logicApps@2024-10-02-preview"