-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
39 lines (32 loc) · 1.17 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
output "cluster_name" {
description = "Name of EKS cluster."
value = module.eks.cluster_name
}
output "cluster_certificate_authority_data" {
description = "Certificate authority data of the EKS cluster."
value = module.eks.cluster_certificate_authority_data
}
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 "eks_managed_node_groups" {
description = "Outputs from node groups"
value = module.eks.eks_managed_node_groups
}
output "aws_auth_configmap_yaml" {
description = "A kubernetes configuration to authenticate to this EKS cluster."
value = module.eks.aws_auth_configmap_yaml
}
output "cluster_certificate_arn" {
description = "ARN of the cluster ACM certificate used for TLS."
value = join("", aws_acm_certificate.this.*.arn)
}
output "worker_security_group_id" {
description = "The ID of the security group used by the worker nodes."
value = module.eks.node_security_group_id
}