This repository has been archived on 2022-02-19. You can view files and clone it, but cannot push or open issues or pull requests.
infra-aws-eks/eks/output.tf
2022-02-13 22:00:34 +01:00

17 lines
294 B
HCL

output "region" {
description = "AWS region"
value = var.aws_region
}
output "cluster_name" {
description = "Kubernetes Cluster Name"
value = aws_eks_cluster.eks_cluster.name
}
output "vpc" {
value = aws_vpc.main
}
output "eks" {
value = aws_eks_cluster.eks_cluster
}