Microsoft.Resources builtInTemplateSpecs
Bicep resource definition
The builtInTemplateSpecs resource type can be deployed with operations that target:
- Tenant - See tenant deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Resources/builtInTemplateSpecs resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Resources/builtInTemplateSpecs@2022-02-01' = {
name: 'string'
}
Property Values
Microsoft.Resources/builtInTemplateSpecs
Name | Description | Value |
---|---|---|
name | The resource name | string Constraints: Min length = 1 Max length = 90 Pattern = ^[-\w\._\(\)]+$ (required) |
ARM template resource definition
The builtInTemplateSpecs resource type can be deployed with operations that target:
- Tenant - See tenant deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Resources/builtInTemplateSpecs resource, add the following JSON to your template.
{
"type": "Microsoft.Resources/builtInTemplateSpecs",
"apiVersion": "2022-02-01",
"name": "string"
}
Property Values
Microsoft.Resources/builtInTemplateSpecs
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2022-02-01' |
name | The resource name | string Constraints: Min length = 1 Max length = 90 Pattern = ^[-\w\._\(\)]+$ (required) |
type | The resource type | 'Microsoft.Resources/builtInTemplateSpecs' |
Usage Examples
Terraform (AzAPI provider) resource definition
The builtInTemplateSpecs resource type can be deployed with operations that target:
- Tenant
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Resources/builtInTemplateSpecs resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Resources/builtInTemplateSpecs@2022-02-01"
name = "string"
}
Property Values
Microsoft.Resources/builtInTemplateSpecs
Name | Description | Value |
---|---|---|
name | The resource name | string Constraints: Min length = 1 Max length = 90 Pattern = ^[-\w\._\(\)]+$ (required) |
type | The resource type | "Microsoft.Resources/builtInTemplateSpecs@2022-02-01" |