Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Oct 17, 2022
1 parent ad8d31b commit eae3c70
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 = one([for k, v in local.vpn_settings : v.tunnel_loopback])
single_vpn_tunnel_ip_address = one([for k, v in local.vpn_settings : v.ip_address])
single_vpn_tunnel_loopback = one(flatten([for k, v in local.vpn_settings : v.tunnel_loopback]))
single_vpn_tunnel_ip_address = one(flatten([for k, v in local.vpn_settings : v.ip_address]))
vpn_tunnel_outputs = { for k, v in local.vpn_settings : k => {
vpn_name = k
site = v.site
Expand Down

0 comments on commit eae3c70

Please sign in to comment.