azurerm_dns_aaaa_record
Enables you to manage DNS AAAA Records within Azure DNS.
Example Usage
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_aaaa_record" "test" { name = "test" zone_name = "${azurerm_dns_zone.test.name}" resource_group_name = "${azurerm_resource_group.test.name}" ttl = 300 records = ["2607:f8b0:4009:1803::1005"] }
Argument Reference
The following arguments are supported:
-
name
- (Required) The name of the DNS AAAA 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 IPv6 Addresses. -
tags
- (Optional) A mapping of tags to assign to the resource.
Attributes Reference
The following attributes are exported:
-
id
- The DNS AAAA Record ID.
Import
AAAA records can be imported using the resource id
, e.g.
terraform import azurerm_dns_aaaa_record.test /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/dnsZones/zone1/AAAA/myrecord1
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/azurerm/r/dns_aaaa_record.html