-
Notifications
You must be signed in to change notification settings - Fork 28
/
outputs.tf
44 lines (36 loc) · 1.38 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
40
41
42
43
44
output "cluster_name" {
description = "Name of the Kubernetes cluster."
value = module.eks[0].cluster_name
}
output "cluster_endpoint" {
description = "Endpoint URL for the EKS control plane."
value = module.eks[0].cluster_endpoint
}
output "cluster_security_group_id" {
description = "Security group IDs that are attached to the control plane of the EKS cluster."
value = module.eks[0].cluster_primary_security_group_id
}
output "cluster_arn" {
description = "ARN of the EKS Cluster."
value = module.eks[0].cluster_arn
}
output "cluster_oidc_issuer_url" {
description = "URL of the OpenID Connect identity provider on the EKS cluster."
value = module.eks[0].cluster_oidc_issuer_url
}
output "worker_iam_role_arn" {
description = "ARN of the IAM role assigned to the EKS worker nodes."
value = aws_iam_role.node_role.arn
}
output "worker_iam_role_name" {
description = "Name of the IAM role assigned to the EKS worker nodes."
value = aws_iam_role.node_role.name
}
output "kms_policy_arn" {
value = aws_iam_policy.kubernetes_pvc_kms_policy.arn
description = "ARN of the KMS policy that is used by the EKS cluster."
}
output "cluster_certificate_authority_data" {
description = "Base64 encoded certificate data required to communicate with the cluster"
value = module.eks[0].cluster_certificate_authority_data
}