-
Notifications
You must be signed in to change notification settings - Fork 3
/
outputs.tf
54 lines (44 loc) · 1.57 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
output "cognito_user_client_secret" {
description = "ARN of the AWS Secrets Manager secret for Cognito client secret key."
value = module.persistence_resources.cognito_user_client_secret
}
output "cognito_domain" {
description = "The Cognito domain."
value = "https://${module.persistence_resources.cognito_domain}.auth.${module.persistence_resources.region.id}.amazoncognito.com"
}
output "region" {
description = "The AWS region."
value = module.persistence_resources.region.id
}
output "user_pool_id" {
description = "The Cognito user pool ID."
value = module.persistence_resources.cognito_user_pool_id
}
output "client_id" {
description = "The Cognito client ID."
value = module.persistence_resources.client_id
}
output "identity_pool_id" {
description = "The Cognito identity pool ID."
value = module.persistence_resources.identity_pool_id
}
output "authenticated_role_arn" {
description = "The authenticated role ARN."
value = module.persistence_resources.authenticated_role
}
output "graphql_endpoint" {
description = "The GraphQL endpoint."
value = module.persistence_resources.merged_api_url
}
output "s3_input_bucket" {
description = "The S3 input bucket."
value = module.persistence_resources.input_assets_bucket_name
}
output "s3_processed_bucket" {
description = "The S3 processed bucket."
value = module.persistence_resources.processed_assets_bucket_name
}
output "client_name" {
description = "The Cognito client name."
value = module.persistence_resources.client_name
}