Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Oct 17, 2022
1 parent 03682af commit 691b0dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vpn-transit-gateway/vpn-config.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
locals {
single_vpn_tunnel_loopback = coalesce([for k, v in local.vpn_settings : v.tunnel_loopback])
single_vpn_tunnel_ip_address = coalesce([for k, v in local.vpn_settings : v.ip_address])
single_vpn_tunnel_loopback = try(element([for k, v in local.vpn_settings : v.tunnel_loopback], 0), "")
single_vpn_tunnel_ip_address = try(element([for k, v in local.vpn_settings : v.ip_address], 0), "")
vpn_tunnel_outputs = { for k, v in local.vpn_settings : k => {
vpn_name = k
site = v.site
Expand Down

0 comments on commit 691b0dc

Please sign in to comment.