Skip to content

Commit

Permalink
Merge pull request #7073 from ottenhoff/bgp-private-range
Browse files Browse the repository at this point in the history
BGP AS 60000 is assigned to EQUINIX-CLOUD-EXCHANGE-AMSTERDAM-ASN.
  • Loading branch information
jen20 committed Jun 8, 2016
2 parents ac2d195 + bd36bc6 commit a31cb50
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions builtin/providers/aws/resource_aws_customer_gateway_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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 {
Expand All @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions builtin/providers/aws/resource_aws_vpn_connection_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand All @@ -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"
}
Expand Down
4 changes: 2 additions & 2 deletions builtin/providers/aws/resource_vpn_connection_route_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand All @@ -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"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down

0 comments on commit a31cb50

Please sign in to comment.