website: AWS provider skeleton
This commit is contained in:
parent
eb0bd46791
commit
e03648528c
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
layout: "aws"
|
||||
page_title: "Provider: AWS"
|
||||
sidebar_current: "docs-aws-resource-route53-zone"
|
||||
---
|
||||
|
||||
# aws\_route53\_zone
|
||||
|
||||
Provides a Route53 Hosted Zone resource.
|
||||
|
||||
## Example Usage
|
||||
|
||||
```
|
||||
resource "aws_route53_zone" "primary" {
|
||||
name = "example.com"
|
||||
}
|
||||
```
|
||||
|
||||
## Argument Reference
|
||||
|
||||
The following arguments are supported:
|
||||
|
||||
* `name` - (Required) This is the name of the hosted zone.
|
||||
|
||||
## Attributes Reference
|
||||
|
||||
The following attributes are exported:
|
||||
|
||||
* `zone_id` - The Hosted Zone ID. This can be referenced by zone records.
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
<div class="docs-sidebar hidden-print affix-top" role="complementary">
|
||||
<ul class="nav docs-sidenav">
|
||||
<li<%= sidebar_current("docs-home") %>>
|
||||
<a href="/docs/index.html">Documentation Home</a>
|
||||
<a href="/docs/index.html">« Documentation Home</a>
|
||||
</li>
|
||||
|
||||
<li<%= sidebar_current("docs-aws-index") %>>
|
||||
|
@ -11,10 +11,10 @@
|
|||
</li>
|
||||
|
||||
<li<%= sidebar_current("docs-aws-resource") %>>
|
||||
<a href="/docs/providers/aws/resources.html">Resources</a>
|
||||
<ul class="nav">
|
||||
<li<%= sidebar_current("docs-commands-agent") %>>
|
||||
<a href="/docs/commands/agent.html">agent</a>
|
||||
<a href="#">Resources</a>
|
||||
<ul class="nav nav-visible">
|
||||
<li<%= sidebar_current("docs-aws-resource-route53-zone") %>>
|
||||
<a href="/docs/providers/aws/r/route53_zone.html">aws_route53_zone</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
|
|
@ -129,6 +129,10 @@ body.layout-intro{
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.nav-visible {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1103,6 +1103,9 @@ body.layout-intro > .container .col-md-8[role=main] > div {
|
|||
-webkit-font-smoothing: antialiased;
|
||||
padding: 6px 15px;
|
||||
}
|
||||
.docs-sidebar .docs-sidenav .nav-visible {
|
||||
display: block;
|
||||
}
|
||||
.bs-docs-section {
|
||||
padding-top: 10px;
|
||||
padding-left: 3%;
|
||||
|
|
Loading…
Reference in New Issue