summaryrefslogtreecommitdiff
path: root/org-buetow-eks/outputs.tf
blob: e00c9341d75e1d48ea85fd1dec959b2f7641dd0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
output "cluster_id" {
  value = aws_eks_cluster.org_buetow_eks.id
}

output "cluster_endpoint" {
  value = aws_eks_cluster.org_buetow_eks.endpoint
}

output "cluster_certificate_authority_data" {
  value = aws_eks_cluster.org_buetow_eks.certificate_authority.0.data
}

output "update_kubeconfig_command" {
  value = "aws eks update-kubeconfig --name ${aws_eks_cluster.org_buetow_eks.name} --region eu-central-1"
}