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 98891e0 commit 3d74762
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 @@ -18,7 +18,7 @@ data "aws_vpc" "peer_vpc" {

# defaults to all private and services vpc
data "aws_route_tables" "default_peer_route_tables" {
count = length(var.peer_route_table_ids) > 0 ? 1 : 0
# count = length(var.peer_route_table_ids) > 0 ? 1 : 0
provider = aws.peer
vpc_id = var.peer_vpc_id
filter {
Expand Down
2 changes: 1 addition & 1 deletion peer/data.self.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ data "aws_vpc" "self_vpc" {

# defaults to all private and services vpc
data "aws_route_tables" "default_self_route_tables" {
count = length(var.route_table_ids) > 0 ? 1 : 0
# count = length(var.route_table_ids) > 0 ? 1 : 0
provider = aws.self
vpc_id = var.vpc_id
filter {
Expand Down

0 comments on commit 3d74762

Please sign in to comment.