【发布时间】:2018-05-20 13:33:02
【问题描述】:
目前陷入泥潭,试图通过 Terraform 为 AWS Cognito 用户池设置“应用程序客户端”。这是我的资源:
resource "aws_cognito_user_pool" "notes-pool" {
name = "notes-pool"
username_attributes = ["email"]
verification_message_template {
default_email_option = "CONFIRM_WITH_CODE"
}
password_policy {
minimum_length = 10
require_lowercase = false
require_numbers = true
require_symbols = false
require_uppercase = true
}
tags {
"Name" = "notes-pool"
"Environment" = "production"
}
}
以上工作正常,我的用户池已创建。如果有人对如何在同一资源中创建应用程序客户端有任何想法,我会全力以赴。我开始怀疑这个功能不存在!
【问题讨论】:
标签: amazon-web-services amazon-cognito devops terraform