-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathoutput.tf
44 lines (36 loc) · 1.12 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
output "endpoint" {
description = "Endpoint for EKS cluster"
value = aws_eks_cluster.eks_cluster.endpoint
}
output "node_iam_role_arn" {
description = "Worker nodes IAM Role ARN"
value = aws_iam_role.node_group_role.arn
}
output "cluster_iam_role_arn" {
description = "Cluster IAM Role ARN"
value = aws_iam_role.cluster_role.arn
}
output "node_groups_arn" {
description = "Worker nodes resource ARN"
value = module.node_group.node_group_arn
}
output "node_groups_resources" {
description = "Cluster resource ARN"
value = module.node_group.node_group_resources
}
output "kubeconfig-certificate-authority-data" {
description = "Kubernetes SSL certificate data"
value = aws_eks_cluster.eks_cluster.certificate_authority.0.data
}
output "eks_cluster_id" {
description = "EKS cluster ID"
value = aws_eks_cluster.eks_cluster.id
}
output "eks_cluster_arn" {
description = "EKS resource ARN"
value = aws_eks_cluster.eks_cluster.arn
}
output "module_node_group_resources" {
description = "EKS module resources"
value = module.node_group.node_group_resources
}