Skip to content

Commit

Permalink
fix pairing
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed May 3, 2021
1 parent 592e39e commit 6605349
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vpn/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ resource "aws_vpn_connection" "vpn" {
locals {
vpn_route_table_ids = [
for pair in setproduct(keys(local.vpn_settings), var.route_table_ids) : {
site = pair[0].key
route_table_id = pair[1].key
site = pair[0]
route_table_id = pair[1]
}
]
}
Expand Down

0 comments on commit 6605349

Please sign in to comment.