Correct VPC customer gw type in examples.

This commit is contained in:
balser 2015-10-06 13:39:39 -04:00
parent 040b9dc4b1
commit 4ede14ee3e
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ Provides a customer gateway inside a VPC. These objects can be connected to VPN
resource "aws_customer_gateway" "main" {
bgp_asn = 60000
ip_address = "172.83.124.10"
type = ipsec.1
type = "ipsec.1"
tags {
Name = "main-customer-gateway"
}

View File

@ -24,7 +24,7 @@ resource "aws_vpn_gateway" "vpn_gateway" {
resource "aws_customer_gateway" "customer_gateway" {
bgp_asn = 60000
ip_address = "172.0.0.1"
type = ipsec.1
type = "ipsec.1"
}
resource "aws_vpn_connection" "main" {