mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 01:00:50 -04:00
1.6 KiB
1.6 KiB
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| aws | AWS: aws_customer_gateway | docs-aws-resource-customer-gateway | Provides a customer gateway inside a VPC. These objects can be connected to VPN gateways via VPN connections, and allow you to establish tunnels between your network and the VPC. |
aws_customer_gateway
Provides a customer gateway inside a VPC. These objects can be connected to VPN gateways via VPN connections, and allow you to establish tunnels between your network and the VPC.
Example Usage
resource "aws_customer_gateway" "main" {
bgp_asn = 65000
ip_address = "172.83.124.10"
type = "ipsec.1"
tags {
Name = "main-customer-gateway"
}
}
Argument Reference
The following arguments are supported:
bgp_asn- (Required) The gateway's Border Gateway Protocol (BGP) Autonomous System Number (ASN).ip_address- (Required) The IP address of the gateway's Internet-routable external interface.type- (Required) The type of customer gateway. The only type AWS supports at this time is "ipsec.1".tags- (Optional) Tags to apply to the gateway.
Attribute Reference
The following attributes are exported:
id- The amazon-assigned ID of the gateway.bgp_asn- The gateway's Border Gateway Protocol (BGP) Autonomous System Number (ASN).ip_address- The IP address of the gateway's Internet-routable external interface.type- The type of customer gateway.tags- Tags applied to the gateway.
Import
Customer Gateways can be imported using the id, e.g.
$ terraform import aws_customer_gateway.main cgw-b4dc3961