Skip to content

Commit

Permalink
[Add] Outputs for cognito user pool domain
Browse files Browse the repository at this point in the history
  • Loading branch information
sahil21 committed Dec 19, 2018
1 parent 49618d8 commit 735a7e8
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,23 @@ output "userpool_client_secret" {
value = "${aws_cognito_user_pool_client.client.client_secret}"
description = "The client secret of the user pool client"
}

output "aws_account_id" {
value = "${aws_cognito_user_pool_domain.domain.aws_account_id}"
description = "The AWS account ID for the user pool owner"
}

output "cloudfront_distribution_arn" {
value = "${aws_cognito_user_pool_domain.domain.cloudfront_distribution_arn}"
description = "The ARN of the CloudFront distribution"
}

output "s3_bucket" {
value = "${aws_cognito_user_pool_domain.domain.s3_bucket}"
description = "The S3 bucket where the static files for this domain are stored"
}

output "version" {
value = "${aws_cognito_user_pool_domain.domain.version}"
description = "The app version"
}

0 comments on commit 735a7e8

Please sign in to comment.