Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jun 1, 2021
1 parent 511ba31 commit a3326f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions peer/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ module "nacl_rule_self" {
rule_description = local.self_label
rule_definitions = {}
named_cidr_blocks = ["vpc"]
merge_cidr_blocks = { "vpc" = local.peer_cidr_block }
merge_cidr_blocks = { "vpc" = [local.peer_cidr_block] }
rules = ["all_inbound", "all_outbound"]
rule_number = var.rule_number
rule_increment = var.rule_increment
Expand All @@ -182,7 +182,7 @@ module "nacl_rule_peer" {
rule_description = local.peer_label
rule_definitions = {}
named_cidr_blocks = ["vpc"]
merge_cidr_blocks = { "vpc" = local.self_cidr_block }
merge_cidr_blocks = { "vpc" = [local.self_cidr_block] }
rules = ["all_inbound", "all_outbound"]
rule_number = var.peer_rule_number
rule_increment = var.peer_rule_increment
Expand Down

0 comments on commit a3326f3

Please sign in to comment.