-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutput.tf
53 lines (41 loc) · 1.23 KB
/
output.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
output "vpc_id" {
description = "The ID of the VPC"
value = module.vpc.vpc_id
}
output "private_subnets" {
description = "List of IDs of private subnets"
value = module.vpc.private_subnets
}
output "public_subnets" {
description = "List of IDs of public subnets"
value = module.vpc.public_subnets
}
output "database_subnets" {
description = "List of IDs of database subnets"
value = module.vpc.database_subnets
}
output "rds_instance_endpoint" {
description = "Endpoint Connection"
value = module.rds.rds_instance_endpoint
}
output "rds_instance_name" {
description = "The database name"
value = module.rds.rds_instance_name
}
output "rds_instance_username" {
description = "The master username for the database"
value = module.rds.rds_instance_username
}
output "cdn_domainname" {
description = "CDN Domain name"
value = module.cdn.cdn_domainname
}
output "cognito_user_pool_id" {
value = module.cognito.cognito_user_pool_id
}
output "cognito_user_pool_client_id" {
value = module.cognito.cognito_user_pool_client_id
}
output "cognito_identity_pool_id" {
value = module.cognito.cognito_identity_pool_id
}