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 462cc7a commit a9f7f6aCopy full SHA for a9f7f6a
main.tf
@@ -2,7 +2,7 @@ locals {
2
name = coalesce(module.this.name, var.name, "cognito-custom-message-sender")
3
enabled = module.this.enabled
4
aws_account_id = try(coalesce(var.aws_account_id, data.aws_caller_identity.current[0].account_id), "")
5
- aws_region_name = try(coalesce(var.aws_region_name, data.aws_region.current[0].name), "")
+ aws_region_name = try(coalesce(var.aws_region_name, data.aws_region.current[0].region), "")
6
aws_partition = one(data.aws_partition.current.*.partition)
7
8
email_sender_enabled = local.enabled && var.email_sender_enabled
0 commit comments