Skip to content

Commit 2691463

Browse files
committed
fix: Skip region ap-northeast-3
1 parent 84dfa81 commit 2691463

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/pricing/regions.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ data "aws_regions" "all" {
33
}
44

55
data "aws_region" "one" {
6-
for_each = data.aws_regions.all.names
6+
# for_each = data.aws_regions.all.names
7+
for_each = {for k, v in data.aws_regions.all.names: k => v if ! contains(["ap-northeast-3"], k) }
78

89
name = each.value
910
}

0 commit comments

Comments
 (0)