There was an error while loading. Please reload this page.
1 parent 890cd8b commit 8e9acd9Copy full SHA for 8e9acd9
1 file changed
ops/terraform-modules/bfd/bfd-terraservice/main.tf
@@ -166,7 +166,12 @@ data "aws_subnet" "main" {
166
id = each.key
167
}
168
169
-data "aws_vpc_peering_connections" "main" {}
+data "aws_vpc_peering_connections" "main" {
170
+ filter {
171
+ name = "status-code"
172
+ values = ["active"]
173
+ }
174
+}
175
176
data "aws_vpc_peering_connection" "main" {
177
for_each = toset(data.aws_vpc_peering_connections.main.ids)
0 commit comments