Add documentation
This commit is contained in:
parent
4706ee7ffc
commit
b741e0c9a3
|
@ -0,0 +1,39 @@
|
|||
---
|
||||
layout: "aws"
|
||||
page_title: "AWS: aws_vpn_gateway"
|
||||
sidebar_current: "docs-aws-resource-vpn-gateway"
|
||||
description: |-
|
||||
Provides a resource to create a VPC VPN Gateway.
|
||||
---
|
||||
|
||||
# aws\_vpn\_gateway
|
||||
|
||||
Provides a resource to create a VPC VPN Gateway.
|
||||
|
||||
## Example Usage
|
||||
|
||||
```
|
||||
resource "aws_vpn_gateway" "vpn_gw" {
|
||||
vpc_id = "${aws_vpc.main.id}"
|
||||
|
||||
tags {
|
||||
Name = "main"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Argument Reference
|
||||
|
||||
The following arguments are supported:
|
||||
|
||||
* `vpc_id` - (Required) The VPC ID to create in.
|
||||
* `type` - (Optional) The type of VPN connection this virtual private gateway supports.
|
||||
* `availability_zone` - (Optional) The Availability Zone for the virtual private gateway.
|
||||
* `tags` - (Optional) A mapping of tags to assign to the resource.
|
||||
|
||||
## Attributes Reference
|
||||
|
||||
The following attributes are exported:
|
||||
|
||||
* `id` - The ID of the VPN Gateway.
|
||||
|
|
@ -95,6 +95,10 @@
|
|||
<li<%= sidebar_current("docs-aws-resource-vpc") %>>
|
||||
<a href="/docs/providers/aws/r/vpc.html">aws_vpc</a>
|
||||
</li>
|
||||
|
||||
<li<%= sidebar_current("docs-aws-resource-vpn-gateway") %>>
|
||||
<a href="/docs/providers/aws/r/vpn_gateway.html">aws_vpn_gateway</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
|
Loading…
Reference in New Issue