Share via


Microsoft.Automanage accounts 2020-06-30-preview

Bicep resource definition

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

resource symbolicname 'Microsoft.Automanage/accounts@2020-06-30-preview' = {
  identity: {
    type: 'string'
  }
  location: 'string'
  name: 'string'
  tags: {
    {customized property}: 'string'
  }
}

Property Values

Microsoft.Automanage/accounts

Name Description Value
identity The identity of the Automanage account. AccountIdentity
location The geo-location where the resource lives string (required)
name The resource name string (required)
tags Resource tags Dictionary of tag names and values. See Tags in templates

AccountIdentity

Name Description Value
type The type of identity used for the Automanage account. Currently, the only supported type is 'SystemAssigned', which implicitly creates an identity. 'None'
'SystemAssigned'

TrackedResourceTags

Name Description Value

ARM template resource definition

The accounts 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/accounts resource, add the following JSON to your template.

{
  "type": "Microsoft.Automanage/accounts",
  "apiVersion": "2020-06-30-preview",
  "name": "string",
  "identity": {
    "type": "string"
  },
  "location": "string",
  "tags": {
    "{customized property}": "string"
  }
}

Property Values

Microsoft.Automanage/accounts

Name Description Value
apiVersion The api version '2020-06-30-preview'
identity The identity of the Automanage account. AccountIdentity
location The geo-location where the resource lives string (required)
name The resource name string (required)
tags Resource tags Dictionary of tag names and values. See Tags in templates
type The resource type 'Microsoft.Automanage/accounts'

AccountIdentity

Name Description Value
type The type of identity used for the Automanage account. Currently, the only supported type is 'SystemAssigned', which implicitly creates an identity. 'None'
'SystemAssigned'

TrackedResourceTags

Name Description Value

Usage Examples

Terraform (AzAPI provider) resource definition

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

  • Resource groups

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

Resource format

To create a Microsoft.Automanage/accounts resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Automanage/accounts@2020-06-30-preview"
  name = "string"
  parent_id = "string"
  identity {
    type = "string"
    identity_ids = [
      "string"
    ]
  }
  location = "string"
  tags = {
    {customized property} = "string"
  }
}

Property Values

Microsoft.Automanage/accounts

Name Description Value
identity The identity of the Automanage account. AccountIdentity
location The geo-location where the resource lives string (required)
name The resource name string (required)
tags Resource tags Dictionary of tag names and values.
type The resource type "Microsoft.Automanage/accounts@2020-06-30-preview"

AccountIdentity

Name Description Value
type The type of identity used for the Automanage account. Currently, the only supported type is 'SystemAssigned', which implicitly creates an identity. 'None'
'SystemAssigned'

TrackedResourceTags

Name Description Value