Microsoft.Maps accounts/creators 2020-02-01-preview

Bicep resource definition

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

resource symbolicname 'Microsoft.Maps/accounts/creators@2020-02-01-preview' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  parent: resourceSymbolicName
}

Property values

accounts/creators

Name Description Value
name The resource name

See how to set names and types for child resources in Bicep.
string (required)
location The location of the resource. string (required)
tags Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. Dictionary of tag names and values. See Tags in templates
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: accounts

Quickstart templates

The following quickstart templates deploy this resource type.

Template Description
Deploy Azure Maps with Azure Maps Creator (Indoor Maps)

Deploy to Azure
This template deploys and Azure Maps account with the Indoor Maps Creator Feature to allow building Indoor Maps.

ARM template resource definition

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

{
  "type": "Microsoft.Maps/accounts/creators",
  "apiVersion": "2020-02-01-preview",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  }
}

Property values

accounts/creators

Name Description Value
type The resource type 'Microsoft.Maps/accounts/creators'
apiVersion The resource api version '2020-02-01-preview'
name The resource name

See how to set names and types for child resources in JSON ARM templates.
string (required)
location The location of the resource. string (required)
tags Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. Dictionary of tag names and values. See Tags in templates

Quickstart templates

The following quickstart templates deploy this resource type.

Template Description
Deploy Azure Maps with Azure Maps Creator (Indoor Maps)

Deploy to Azure
This template deploys and Azure Maps account with the Indoor Maps Creator Feature to allow building Indoor Maps.

Terraform (AzAPI provider) resource definition

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Maps/accounts/creators@2020-02-01-preview"
  name = "string"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
}

Property values

accounts/creators

Name Description Value
type The resource type "Microsoft.Maps/accounts/creators@2020-02-01-preview"
name The resource name string (required)
location The location of the resource. string (required)
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: accounts
tags Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. Dictionary of tag names and values.