Provides a Virtual Private Gateway attachment resource, allowing for an existing hardware VPN gateway to be attached and/or detached from a VPC.
Note: The
aws_vpn_gatewayresource can also automatically attach the Virtual Private Gateway it creates to an existing VPC by setting thevpc_idattribute accordingly.
resource "aws_vpc" "network" {
cidr_block = "10.0.0.0/16"
}
resource "aws_vpn_gateway" "vpn" {
tags {
Name = "example-vpn-gateway"
}
}
resource "aws_vpn_gateway_attachment" "vpn_attachment" {
vpc_id = "${aws_vpc.network.id}"
vpn_gateway_id = "${aws_vpn_gateway.vpn.id}"
}
See Virtual Private Cloud and Virtual Private Gateway user guides for more information.
The following arguments are supported:
vpc_id - (Required) The ID of the VPC. vpn_gateway_id - (Required) The ID of the Virtual Private Gateway. In addition to all arguments above, the following attributes are exported:
vpc_id - The ID of the VPC that Virtual Private Gateway is attached to. vpn_gateway_id - The ID of the Virtual Private Gateway. This resource does not support importing.
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/vpn_gateway_attachment.html