Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Oct 20, 2021
1 parent 058a027 commit 1947583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion peer/data.peer.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ data "aws_network_acls" "default_peer_network_acls" {
values = local.peer_subnets
}
dynamic "filter" {
for_each = length(var.peer_network_acl_filter) > 0 ? toset({ 1 = 1 }) : toset({})
for_each = length(var.peer_network_acl_filter) > 0 ? toset(["1"]) : toset([])
iterator = f
content {
name = "tag:Name"
Expand Down

0 comments on commit 1947583

Please sign in to comment.