Skip to content

Instantly share code, notes, and snippets.

@a-patel
Created February 25, 2022 20:57
Show Gist options
  • Save a-patel/e72c00ed92a737fd3bf888726c6567dd to your computer and use it in GitHub Desktop.
Save a-patel/e72c00ed92a737fd3bf888726c6567dd to your computer and use it in GitHub Desktop.
Amazon EKS Terraform Workshop: Outputs
output "cluster_name" {
value = aws_eks_cluster.this.name
}
output "cluster_endpoint" {
value = aws_eks_cluster.this.endpoint
}
output "cluster_ca_certificate" {
value = aws_eks_cluster.this.certificate_authority[0].data
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment