-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
37 lines (30 loc) · 1.06 KB
/
outputs.tf
File metadata and controls
37 lines (30 loc) · 1.06 KB
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
output "cluster_name" {
value = aws_eks_cluster.blockchain_eks.id
}
output "eks_cluster_id" {
description = "EKS Cluster ID"
value = aws_eks_cluster.blockchain_eks.id
}
output "eks_cluster_endpoint" {
description = "Endpoint for the Kubernetes API server"
value = aws_eks_cluster.blockchain_eks.endpoint
}
output "eks_cluster_arn" {
description = "Amazon Resource Name (ARN) of the EKS Cluster"
value = aws_eks_cluster.blockchain_eks.arn
}
output "eks_cluster_security_group_id" {
description = "Security Group ID for the EKS cluster"
value = aws_eks_cluster.blockchain_eks.vpc_config[0].cluster_security_group_id
}
output "eks_cluster_certificate_authority" {
description = "EKS cluster certificate authority data"
value = aws_eks_cluster.blockchain_eks.certificate_authority[0].data
}
output "eks_oidc_issuer" {
description = "OIDC Issuer URL for IAM authentication"
value = aws_eks_cluster.blockchain_eks.identity[0].oidc[0].issuer
}
output "eks_api_security_group_id" {
value = aws_security_group.eks_api_sg.id
}