-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
52 lines (40 loc) · 935 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
output "ec2_private_key" {
value = tls_private_key.ec2.private_key_pem
sensitive = true
}
output "ec2_keypair_name" {
value = module.key_pair.this_key_pair_key_name
}
output "vpc_id" {
value = module.vpc.vpc_id
}
output "state_bucket_arn" {
value = module.state_bucket.state_bucket_arn
}
output "state_replication_bucket_arn" {
value = module.state_bucket.state_replication_bucket_arn
}
output "alb_app_arn" {
value = module.alb_app.arn
}
output "alb_worker_arn" {
value = module.alb_worker.arn
}
output "asg_app_name" {
value = module.asg_app.asg_name
}
output "asg_worker_name" {
value = module.asg_worker.asg_name
}
output "mysql_cluster_address" {
value = module.aurora_mysql.cluster_address
}
output "redis_endpoint" {
value = module.redis.endpoint
}
output "memcached_endpoint" {
value = module.memcached.endpoint
}
output "cloudfront_domain" {
value = module.cloudfront.domain_name
}