BGP AS 60000 is assigned to EQUINIX-CLOUD-EXCHANGE-AMSTERDAM-ASN.
AS65000 is reserved for private use. https://en.wikipedia.org/wiki/Autonomous_system_\(Internet\)
This commit is contained in:
parent
ac2d195cc5
commit
bd36bc60aa
|
@ -116,7 +116,7 @@ func testAccCheckCustomerGateway(gatewayResource string) resource.TestCheckFunc
|
|||
|
||||
const testAccCustomerGatewayConfig = `
|
||||
resource "aws_customer_gateway" "foo" {
|
||||
bgp_asn = 60000
|
||||
bgp_asn = 65000
|
||||
ip_address = "172.0.0.1"
|
||||
type = "ipsec.1"
|
||||
tags {
|
||||
|
@ -128,7 +128,7 @@ resource "aws_customer_gateway" "foo" {
|
|||
// Add the Another: "tag" tag.
|
||||
const testAccCustomerGatewayConfigUpdateTags = `
|
||||
resource "aws_customer_gateway" "foo" {
|
||||
bgp_asn = 60000
|
||||
bgp_asn = 65000
|
||||
ip_address = "172.0.0.1"
|
||||
type = "ipsec.1"
|
||||
tags {
|
||||
|
@ -141,7 +141,7 @@ resource "aws_customer_gateway" "foo" {
|
|||
// Change the ip_address.
|
||||
const testAccCustomerGatewayConfigForceReplace = `
|
||||
resource "aws_customer_gateway" "foo" {
|
||||
bgp_asn = 60000
|
||||
bgp_asn = 65000
|
||||
ip_address = "172.10.10.1"
|
||||
type = "ipsec.1"
|
||||
tags {
|
||||
|
|
|
@ -142,7 +142,7 @@ resource "aws_vpn_gateway" "vpn_gateway" {
|
|||
}
|
||||
|
||||
resource "aws_customer_gateway" "customer_gateway" {
|
||||
bgp_asn = 60000
|
||||
bgp_asn = 65000
|
||||
ip_address = "178.0.0.1"
|
||||
type = "ipsec.1"
|
||||
}
|
||||
|
@ -164,7 +164,7 @@ resource "aws_vpn_gateway" "vpn_gateway" {
|
|||
}
|
||||
|
||||
resource "aws_customer_gateway" "customer_gateway" {
|
||||
bgp_asn = 60000
|
||||
bgp_asn = 65000
|
||||
ip_address = "178.0.0.1"
|
||||
type = "ipsec.1"
|
||||
}
|
||||
|
|
|
@ -151,7 +151,7 @@ resource "aws_vpn_gateway" "vpn_gateway" {
|
|||
}
|
||||
|
||||
resource "aws_customer_gateway" "customer_gateway" {
|
||||
bgp_asn = 60000
|
||||
bgp_asn = 65000
|
||||
ip_address = "182.0.0.1"
|
||||
type = "ipsec.1"
|
||||
}
|
||||
|
@ -178,7 +178,7 @@ resource "aws_vpn_gateway" "vpn_gateway" {
|
|||
}
|
||||
|
||||
resource "aws_customer_gateway" "customer_gateway" {
|
||||
bgp_asn = 60000
|
||||
bgp_asn = 65000
|
||||
ip_address = "182.0.0.1"
|
||||
type = "ipsec.1"
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@ Provides a customer gateway inside a VPC. These objects can be connected to VPN
|
|||
|
||||
```
|
||||
resource "aws_customer_gateway" "main" {
|
||||
bgp_asn = 60000
|
||||
bgp_asn = 65000
|
||||
ip_address = "172.83.124.10"
|
||||
type = "ipsec.1"
|
||||
tags {
|
||||
|
|
|
@ -23,7 +23,7 @@ resource "aws_vpn_gateway" "vpn_gateway" {
|
|||
}
|
||||
|
||||
resource "aws_customer_gateway" "customer_gateway" {
|
||||
bgp_asn = 60000
|
||||
bgp_asn = 65000
|
||||
ip_address = "172.0.0.1"
|
||||
type = "ipsec.1"
|
||||
}
|
||||
|
|
|
@ -22,7 +22,7 @@ resource "aws_vpn_gateway" "vpn_gateway" {
|
|||
}
|
||||
|
||||
resource "aws_customer_gateway" "customer_gateway" {
|
||||
bgp_asn = 60000
|
||||
bgp_asn = 65000
|
||||
ip_address = "172.0.0.1"
|
||||
type = "ipsec.1"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue