forked from squareops/terraform-aws-eks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
39 lines (32 loc) · 1.06 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 = "Kubernetes Cluster Name"
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_primary_security_group_id
}
output "kubeconfig_context_name" {
description = "Name of the kubeconfig context"
value = module.eks.cluster_arn
}
output "cluster_oidc_issuer_url" {
description = "The URL on the EKS cluster for the OpenID Connect identity provider"
value = module.eks.cluster_oidc_issuer_url
}
output "worker_iam_role_arn" {
description = "ARN of the EKS Worker Role"
value = aws_iam_role.node_role.arn
}
output "worker_iam_role_name" {
description = "The name of the EKS Worker IAM role"
value = aws_iam_role.node_role.name
}
output "kms_policy_arn" {
value = aws_iam_policy.kubernetes_pvc_kms_policy.arn
description = "ARN of KMS policy."
}