website: route53 record
This commit is contained in:
parent
c76ec75433
commit
78c720935d
|
@ -0,0 +1,36 @@
|
||||||
|
---
|
||||||
|
layout: "aws"
|
||||||
|
page_title: "AWS: aws_route53_record"
|
||||||
|
sidebar_current: "docs-aws-resource-route53-record"
|
||||||
|
---
|
||||||
|
|
||||||
|
# aws\_route53\_record
|
||||||
|
|
||||||
|
Provides a Route53 record resource.
|
||||||
|
|
||||||
|
## Example Usage
|
||||||
|
|
||||||
|
```
|
||||||
|
resource "aws_route53_record" "www" {
|
||||||
|
zone_id = "${aws_route53_zone.primary.zone_id}"
|
||||||
|
name = "www.example.com"
|
||||||
|
type = "A"
|
||||||
|
ttl = "300"
|
||||||
|
records = ["${aws_eip.lb.public_ip}"]
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Argument Reference
|
||||||
|
|
||||||
|
The following arguments are supported:
|
||||||
|
|
||||||
|
* `zone_id` - (Required) The ID of the hosted zone to contain this record.
|
||||||
|
* `name` - (Required) The name of the record.
|
||||||
|
* `type` - (Required) The record type.
|
||||||
|
* `ttl` - (Required) The TTL of the record.
|
||||||
|
* `records` - (Required) A string list of records.
|
||||||
|
|
||||||
|
## Attributes Reference
|
||||||
|
|
||||||
|
No attributes are exported.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
layout: "aws"
|
layout: "aws"
|
||||||
page_title: "Provider: AWS"
|
page_title: "AWS: aws_route53_zone"
|
||||||
sidebar_current: "docs-aws-resource-route53-zone"
|
sidebar_current: "docs-aws-resource-route53-zone"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,10 @@
|
||||||
<li<%= sidebar_current("docs-aws-resource") %>>
|
<li<%= sidebar_current("docs-aws-resource") %>>
|
||||||
<a href="#">Resources</a>
|
<a href="#">Resources</a>
|
||||||
<ul class="nav nav-visible">
|
<ul class="nav nav-visible">
|
||||||
|
<li<%= sidebar_current("docs-aws-resource-route53-record") %>>
|
||||||
|
<a href="/docs/providers/aws/r/route53_record.html">aws_route53_record</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li<%= sidebar_current("docs-aws-resource-route53-zone") %>>
|
<li<%= sidebar_current("docs-aws-resource-route53-zone") %>>
|
||||||
<a href="/docs/providers/aws/r/route53_zone.html">aws_route53_zone</a>
|
<a href="/docs/providers/aws/r/route53_zone.html">aws_route53_zone</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
Loading…
Reference in New Issue