We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84dfa81 commit 2691463Copy full SHA for 2691463
modules/pricing/regions.tf
@@ -3,7 +3,8 @@ data "aws_regions" "all" {
3
}
4
5
data "aws_region" "one" {
6
- for_each = data.aws_regions.all.names
+# 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) }
8
9
name = each.value
10
0 commit comments