Microsoft.Automanage configurationProfileAssignments

Bicep resource definition

The configurationProfileAssignments 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.Automanage/configurationProfileAssignments resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.Automanage/configurationProfileAssignments@2022-05-04' = {
  scope: resourceSymbolicName or scope
  name: 'string'
  properties: {
    configurationProfile: 'string'
  }
}

Property Values

Microsoft.Automanage/configurationProfileAssignments

Name Description Value
name The resource name string (required)
properties Properties of the configuration profile assignment. ConfigurationProfileAssignmentProperties
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.

ConfigurationProfileAssignmentProperties

Name Description Value
configurationProfile The Automanage configurationProfile ARM Resource URI. string

ARM template resource definition

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

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

Usage Examples

Resource format

To create a Microsoft.Automanage/configurationProfileAssignments resource, add the following JSON to your template.

{
  "type": "Microsoft.Automanage/configurationProfileAssignments",
  "apiVersion": "2022-05-04",
  "name": "string",
  "properties": {
    "configurationProfile": "string"
  }
}

Property Values

Microsoft.Automanage/configurationProfileAssignments

Name Description Value
apiVersion The api version '2022-05-04'
name The resource name string (required)
properties Properties of the configuration profile assignment. ConfigurationProfileAssignmentProperties
type The resource type 'Microsoft.Automanage/configurationProfileAssignments'

ConfigurationProfileAssignmentProperties

Name Description Value
configurationProfile The Automanage configurationProfile ARM Resource URI. string

Terraform (AzAPI provider) resource definition

The configurationProfileAssignments 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.Automanage/configurationProfileAssignments resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Automanage/configurationProfileAssignments@2022-05-04"
  name = "string"
  parent_id = "string"
  body = {
    properties = {
      configurationProfile = "string"
    }
  }
}

Property Values

Microsoft.Automanage/configurationProfileAssignments

Name Description Value
name The resource name string (required)
parent_id The ID of the resource to apply this extension resource to. string (required)
properties Properties of the configuration profile assignment. ConfigurationProfileAssignmentProperties
type The resource type "Microsoft.Automanage/configurationProfileAssignments@2022-05-04"

ConfigurationProfileAssignmentProperties

Name Description Value
configurationProfile The Automanage configurationProfile ARM Resource URI. string