github.com/chalford/terraform@v0.3.7-0.20150113080010-a78c69a8c81f/website/source/docs/providers/aws/r/route53_zone.html.markdown (about) 1 --- 2 layout: "aws" 3 page_title: "AWS: aws_route53_zone" 4 sidebar_current: "docs-aws-resource-route53-zone" 5 description: |- 6 Provides a Route53 Hosted Zone resource. 7 --- 8 9 # aws\_route53\_zone 10 11 Provides a Route53 Hosted Zone resource. 12 13 ## Example Usage 14 15 ``` 16 resource "aws_route53_zone" "primary" { 17 name = "example.com" 18 } 19 ``` 20 21 ## Argument Reference 22 23 The following arguments are supported: 24 25 * `name` - (Required) This is the name of the hosted zone. 26 27 ## Attributes Reference 28 29 The following attributes are exported: 30 31 * `zone_id` - The Hosted Zone ID. This can be referenced by zone records. 32