-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.tf
59 lines (48 loc) · 1.46 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
54
55
56
57
58
59
# output "cluster_id" {
# description = "EKS cluster ID"
# value = module.eks.cluster_id
# }
# output "cluster_endpoint" {
# description = "Endpoint for EKS control plane"
# value = module.eks.cluster_endpoint
# }
# output "cluster_security_group_id" {
# description = "Security group ids attached to the cluster control plane"
# value = module.eks.cluster_security_group_id
# }
output "region" {
description = "AWS region"
value = var.region
}
# output "cluster_name" {
# description = "Kubernetes Cluster Name"
# value = local.cluster_name
# }
output "cluster_name" {
description = "ECS cluster name"
value = module.mastodon_cluster.cluster_name
}
output "cluster_id" {
description = "ECS cluster ARN"
value = module.mastodon_cluster.cluster_id
}
output "load_balancer_dns" {
description = "Load balancer DNS name"
value = module.mastodon_cluster.load_balancer_dns
}
output "elasticache_endpoint" {
description = "Elasticache endpoint"
value = module.mastodon_cluster.elasticache_endpoint
}
output "nameservers" {
description = "Nameservers for the domain"
value = module.domain.nameservers
}
output "vapid_public_key_pem" {
description = "Vapid public key"
value = module.mastodon_cluster.vapid_public_key_pem
}
output "vapid_public_key_openssh" {
description = "Vapid public key in OpenSSH format"
value = module.mastodon_cluster.vapid_public_key_openssh
}