Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
james-martinez committed Aug 14, 2024
1 parent ad81882 commit c9b9b6c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ resource "aws_vpn_connection" "default" {
customer_gateway_id = var.customer_gateway_id
type = "ipsec.1"

static_routes_only = var.vpn_connection_static_routes_only
static_routes_only = var.vpn_connection_static_routes_only
enable_acceleration = var.vpn_connection_enable_acceleration

tunnel1_phase1_dh_group_numbers = var.tunnel1_phase1_dh_group_numbers
Expand Down Expand Up @@ -133,7 +133,7 @@ resource "aws_vpn_connection" "tunnel" {
customer_gateway_id = var.customer_gateway_id
type = "ipsec.1"

static_routes_only = var.vpn_connection_static_routes_only
static_routes_only = var.vpn_connection_static_routes_only
enable_acceleration = var.vpn_connection_enable_acceleration

tunnel1_inside_cidr = var.tunnel1_inside_cidr
Expand Down Expand Up @@ -245,7 +245,7 @@ resource "aws_vpn_connection" "preshared" {
customer_gateway_id = var.customer_gateway_id
type = "ipsec.1"

static_routes_only = var.vpn_connection_static_routes_only
static_routes_only = var.vpn_connection_static_routes_only
enable_acceleration = var.vpn_connection_enable_acceleration

tunnel1_preshared_key = var.tunnel1_preshared_key
Expand Down Expand Up @@ -354,7 +354,7 @@ resource "aws_vpn_connection" "tunnel_preshared" {
customer_gateway_id = var.customer_gateway_id
type = "ipsec.1"

static_routes_only = var.vpn_connection_static_routes_only
static_routes_only = var.vpn_connection_static_routes_only
enable_acceleration = var.vpn_connection_enable_acceleration

tunnel1_inside_cidr = var.tunnel1_inside_cidr
Expand Down

0 comments on commit c9b9b6c

Please sign in to comment.