Provides a Cognito User Pool Domain resource.
resource "aws_cognito_user_pool_domain" "main" {
domain = "example-domain"
user_pool_id = "${aws_cognito_user_pool.example.id}"
}
resource "aws_cognito_user_pool" "example" {
name = "example-pool"
}
The following arguments are supported:
domain - (Required) The domain string. user_pool_id - (Required) The user pool ID. In addition to all arguments above, the following attributes are exported:
aws_account_id - The AWS account ID for the user pool owner. cloudfront_distribution_arn - The ARN of the CloudFront distribution. s3_bucket - The S3 bucket where the static files for this domain are stored. version - The app version.
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/cognito_user_pool_domain.html