Enables you to manage DNS A Records within Azure DNS.
resource "azurestack_resource_group" "test" {
name = "acceptanceTestResourceGroup1"
location = "West US"
}
resource "azurestack_dns_zone" "test" {
name = "mydomain.com"
resource_group_name = "${azurestack_resource_group.test.name}"
}
resource "azurestack_dns_a_record" "test" {
name = "test"
zone_name = "${azurestack_dns_zone.test.name}"
resource_group_name = "${azurestack_resource_group.test.name}"
ttl = 300
records = ["10.0.180.17"]
}
The following arguments are supported:
name - (Required) The name of the DNS A 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 - (Required) List of IPv4 Addresses.
tags - (Optional) A mapping of tags to assign to the resource.
The following attributes are exported:
id - The DNS A Record ID. A records can be imported using the resource id, e.g.
terraform import azurestack_dns_a_record.test /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/dnsZones/zone1/A/myrecord1
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/azurestack/r/dns_a_record.html