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 263410b commit 2096d87Copy full SHA for 2096d87
main.tf
@@ -13,9 +13,9 @@ data "aws_region" "current" {
13
}
14
15
locals {
16
- partition = try(data.aws_partition.current[0].partition, null)
17
- account_id = try(data.aws_caller_identity.current[0].account_id, null)
18
- region = try(data.aws_region.current[0].region, null)
+ partition = try(data.aws_partition.current[0].partition, "aws")
+ account_id = try(data.aws_caller_identity.current[0].account_id, "")
+ region = try(data.aws_region.current[0].region, "")
19
20
21
################################################################################
0 commit comments