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 934a078 commit d30feaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion peer/data.peer.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ locals {
# get network acls associated with subnets in route table
data "aws_network_acls" "default_peer_network_acls" {
provider = aws.peer
vpc_id = var.peer_vpc_id
vpc_id = local.peer_vpc_id
filter {
name = "association.subnet-id"
values = local.peer_subnets
Expand Down
2 changes: 1 addition & 1 deletion peer/data.self.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ locals {
# get network acls associated with subnets in route table
data "aws_network_acls" "default_self_network_acls" {
provider = aws.self
vpc_id = var.self_vpc_id
vpc_id = local.self_vpc_id
filter {
name = "association.subnet-id"
values = local.self_subnets
Expand Down

0 comments on commit d30feaa

Please sign in to comment.