Enables you to manage DNS NS Records within Azure DNS.
resource "azurerm_resource_group" "test" {
name = "acceptanceTestResourceGroup1"
location = "West US"
}
resource "azurerm_dns_zone" "test" {
name = "mydomain.com"
resource_group_name = "${azurerm_resource_group.test.name}"
}
resource "azurerm_dns_ns_record" "test" {
name = "test"
zone_name = "${azurerm_dns_zone.test.name}"
resource_group_name = "${azurerm_resource_group.test.name}"
ttl = 300
records = ["ns1.contoso.com", "ns2.contoso.com"]
tags {
Environment = "Production"
}
}
The following arguments are supported:
name - (Required) The name of the DNS NS Record.
resource_group_name - (Required) Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
zone_name - (Required) Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
ttl - (Required) The Time To Live (TTL) of the DNS record.
records - (Optional) A list of values that make up the NS record. WARNING: Either records or record is required.
record - (Optional) A list of values that make up the NS record. Each record block supports fields documented below. This field has been deprecated and will be removed in a future release.
tags - (Optional) A mapping of tags to assign to the resource.
The record block supports:
nsdname - (Required) The value of the record. The following attributes are exported:
id - The DNS NS Record ID. NS records can be imported using the resource id, e.g.
terraform import azurerm_dns_ns_record.test /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/dnsZones/zone1/NS/myrecord1
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/azurerm/r/dns_ns_record.html