Microsoft.Network dnszones 2015-05-04-preview
Bicep resource definition
The dnszones resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Network/dnszones resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Network/dnszones@2015-05-04-preview' = {
etag: 'string'
location: 'string'
name: 'string'
properties: {
maxNumberOfRecordSets: int
numberOfRecordSets: int
}
tags: {
{customized property}: 'string'
}
}
Property values
Microsoft.Network/dnszones
Name | Description | Value |
---|---|---|
etag | Gets or sets the ETag of the zone that is being updated, as received from a Get operation. | string |
location | The geo-location where the resource lives | string (required) |
name | The resource name | string (required) |
properties | Gets or sets the properties of the zone. | ZoneProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
TrackedResourceTags
Name | Description | Value |
---|
ZoneProperties
Name | Description | Value |
---|---|---|
maxNumberOfRecordSets | Gets or sets the maximum number of record sets that can be created in this zone. | int |
numberOfRecordSets | Gets or sets the current number of record sets in this zone. | int |
Quickstart samples
The following quickstart samples deploy this resource type.
Bicep File | Description |
---|---|
Azure DNS domain hosting example | This template shows how to create a DNS zone within Azure DNS and how to add some record sets to it. |
Front Door Standard/Premium with Azure DNS and custom domain | This template creates a Front Door Standard/Premium including a custom domain on Azure DNS and Microsoft-managed certificate. |
ARM template resource definition
The dnszones resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Network/dnszones resource, add the following JSON to your template.
{
"type": "Microsoft.Network/dnszones",
"apiVersion": "2015-05-04-preview",
"name": "string",
"etag": "string",
"location": "string",
"properties": {
"maxNumberOfRecordSets": "int",
"numberOfRecordSets": "int"
},
"tags": {
"{customized property}": "string"
}
}
Property values
Microsoft.Network/dnszones
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2015-05-04-preview' |
etag | Gets or sets the ETag of the zone that is being updated, as received from a Get operation. | string |
location | The geo-location where the resource lives | string (required) |
name | The resource name | string (required) |
properties | Gets or sets the properties of the zone. | ZoneProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.Network/dnszones' |
TrackedResourceTags
Name | Description | Value |
---|
ZoneProperties
Name | Description | Value |
---|---|---|
maxNumberOfRecordSets | Gets or sets the maximum number of record sets that can be created in this zone. | int |
numberOfRecordSets | Gets or sets the current number of record sets in this zone. | int |
Quickstart templates
The following quickstart templates deploy this resource type.
Template | Description |
---|---|
Azure DNS domain hosting example |
This template shows how to create a DNS zone within Azure DNS and how to add some record sets to it. |
Create a DNS Zone with the correct records for Office 365 |
This template configures the records needed to integrate Azure DNS with Office 365 by adding the correct CNAME, SRV, MX, and TXT records. |
Front Door Standard/Premium with Azure DNS and custom domain |
This template creates a Front Door Standard/Premium including a custom domain on Azure DNS and Microsoft-managed certificate. |
Terraform (AzAPI provider) resource definition
The dnszones 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.Network/dnszones resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Network/dnszones@2015-05-04-preview"
name = "string"
etag = "string"
location = "string"
body = jsonencode({
properties = {
maxNumberOfRecordSets = int
numberOfRecordSets = int
}
})
tags = {
{customized property} = "string"
}
}
Property values
Microsoft.Network/dnszones
Name | Description | Value |
---|---|---|
etag | Gets or sets the ETag of the zone that is being updated, as received from a Get operation. | string |
location | The geo-location where the resource lives | string (required) |
name | The resource name | string (required) |
properties | Gets or sets the properties of the zone. | ZoneProperties |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.Network/dnszones@2015-05-04-preview" |
TrackedResourceTags
Name | Description | Value |
---|
ZoneProperties
Name | Description | Value |
---|---|---|
maxNumberOfRecordSets | Gets or sets the maximum number of record sets that can be created in this zone. | int |
numberOfRecordSets | Gets or sets the current number of record sets in this zone. | int |