mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
Correct VPC customer gw type in examples.
This commit is contained in:
parent
040b9dc4b1
commit
4ede14ee3e
@ -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"
|
||||
}
|
||||
|
@ -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" {
|
||||
|
Loading…
Reference in New Issue
Block a user