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.
2 parents 2031191 + fc3e602 commit 4823f9dCopy full SHA for 4823f9d
main.tf
@@ -19,7 +19,7 @@ resource "aws_cognito_user_pool" "user_pool" {
19
count = var.module_enabled ? 1 : 0
20
21
name = var.name
22
- alias_attributes = local.alias_attributes
+ alias_attributes = var.alias_attributes != null ? var.alias_attributes : local.alias_attributes
23
username_attributes = var.username_attributes
24
auto_verified_attributes = var.auto_verified_attributes
25
0 commit comments