-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
provider/aws: route53 delegation set docs added
- Loading branch information
1 parent
b638522
commit 8cc5424
Showing
3 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
website/source/docs/providers/aws/r/route53_delegation_set.html.markdown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
layout: "aws" | ||
page_title: "AWS: aws_route53_delegation_set" | ||
sidebar_current: "docs-aws-resource-route53-delegation-set" | ||
description: |- | ||
Provides a Route53 Delegation Set resource. | ||
--- | ||
|
||
# aws\_route53\_delegation_set | ||
|
||
Provides a [Route53 Delegation Set](http://docs.aws.amazon.com/Route53/latest/APIReference/actions-on-reusable-delegation-sets.html) resource. | ||
|
||
## Example Usage | ||
|
||
``` | ||
resource "aws_route53_delegation_set" "main" { | ||
reference_name = "DynDNS" | ||
} | ||
resource "aws_route53_zone" "primary" { | ||
name = "hashicorp.com" | ||
delegation_set_id = "${aws_route53_delegation_set.main.id}" | ||
} | ||
resource "aws_route53_zone" "secondary" { | ||
name = "terraform.io" | ||
delegation_set_id = "${aws_route53_delegation_set.main.id}" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `reference_name` - (Optional) This is a reference name used in Caller Reference | ||
(helpful for identifying single delegation set amongst others) | ||
|
||
## Attributes Reference | ||
|
||
The following attributes are exported: | ||
|
||
* `id` - The delegation set ID | ||
* `name_servers` - A list of authoritative name servers for the hosted zone | ||
(effectively a list of NS records). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters