Specifies a customer gateway.
resource "awscc_ec2_customer_gateway" "example" {
bgp_asn = 65000
ip_address = "12.1.2.3"
type = "ipsec.1"
tags = [{
key = "Modified By"
value = "AWSCC"
}]
}
resource "awscc_ec2_customer_gateway" "example" {
bgp_asn = 65000
ip_address = "12.1.2.3"
type = "ipsec.1"
device_name = "example"
}
ip_address
(String) IPv4 address for the customer gateway device's outside interface. The address must be static.type
(String) The type of VPN connection that this customer gateway supports (ipsec.1
).bgp_asn
(Number) For devices that support BGP, the customer gateway's BGP ASN.
Default: 65000certificate_arn
(String)device_name
(String) The name of customer gateway device.tags
(Attributes List) One or more tags for the customer gateway. (see below for nested schema)customer_gateway_id
(String)id
(String) Uniquely identifies the resource.tags
Required:
key
(String) The tag key.value
(String) The tag value.Import is supported using the following syntax:
$ terraform import awscc_ec2_customer_gateway.example <resource ID>