github.com/bengesoff/terraform@v0.3.1-0.20141018223233-b25a53629922/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  ---
     6  
     7  # aws\_route53\_zone
     8  
     9  Provides a Route53 Hosted Zone resource.
    10  
    11  ## Example Usage
    12  
    13  ```
    14  resource "aws_route53_zone" "primary" {
    15     name = "example.com"
    16  }
    17  ```
    18  
    19  ## Argument Reference
    20  
    21  The following arguments are supported:
    22  
    23  * `name` - (Required) This is the name of the hosted zone.
    24  
    25  ## Attributes Reference
    26  
    27  The following attributes are exported:
    28  
    29  * `zone_id` - The Hosted Zone ID. This can be referenced by zone records.
    30