2015-03-09 14:00:29 +01:00
|
|
|
---
|
|
|
|
layout: "cloudstack"
|
|
|
|
page_title: "CloudStack: cloudstack_vpn_gateway"
|
|
|
|
sidebar_current: "docs-cloudstack-resource-vpn-gateway"
|
|
|
|
description: |-
|
|
|
|
Creates a site to site VPN local gateway.
|
|
|
|
---
|
|
|
|
|
|
|
|
# cloudstack\_vpn\_gateway
|
|
|
|
|
|
|
|
Creates a site to site VPN local gateway.
|
|
|
|
|
|
|
|
## Example Usage
|
|
|
|
|
|
|
|
Basic usage:
|
|
|
|
|
|
|
|
```
|
|
|
|
resource "cloudstack_vpn_gateway" "default" {
|
|
|
|
vpc = "test-vpc"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Argument Reference
|
|
|
|
|
|
|
|
The following arguments are supported:
|
|
|
|
|
2015-04-29 11:21:37 +02:00
|
|
|
* `vpc` - (Required) The name or ID of the VPC for which to create the VPN Gateway.
|
2015-03-09 14:00:29 +01:00
|
|
|
Changing this forces a new resource to be created.
|
|
|
|
|
|
|
|
## Attributes Reference
|
|
|
|
|
|
|
|
The following attributes are exported:
|
|
|
|
|
|
|
|
* `id` - The ID of the VPN Gateway.
|
|
|
|
* `public_ip` - The public IP address associated with the VPN Gateway.
|