-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoutputs.tf
70 lines (54 loc) · 912 Bytes
/
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
output "stack_name" {
value = local.stack_name
}
output "account_id" {
value = data.aws_caller_identity.current.account_id
}
output "region" {
value = var.aws_region
}
output "iam" {
value = module.iam
sensitive = true
}
output "acm" {
value = module.acm
}
# output "route53_hosted_zone_id" {
# value = module.route53.hosted_zone_id
# }
# output "acm_certificate_arn" {
# value = module.acm.certificate_arn
# }
output "ecs" {
value = module.ecs
}
output "ecr" {
value = module.ecr
}
output "s3" {
value = module.s3
}
output "vpc" {
value = module.vpc
}
output "aurora" {
value = module.aurora
sensitive = true
}
output "elasticache" {
value = module.elasticache
}
output "elasticsearch" {
value = module.elasticsearch
}
output "sqs" {
value = module.sqs
}
output "ssm" {
value = module.ssm
sensitive = true
}
output "ec2" {
value = module.ec2
}