Add EKS test environment Terraform templates (#2290)

Co-authored-by: Francesco Renzi <[email protected]>
This commit is contained in:
Bassem Dghaidi
2023-02-15 10:29:49 -05:00
committed by GitHub
co-authored by Francesco Renzi
parent dab900462b
commit 3886f285f8
8 changed files with 323 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
output "cluster_endpoint" {
description = "Endpoint for EKS control plane"
value = module.eks.cluster_endpoint
}
output "cluster_security_group_id" {
description = "Security group ids"
value = module.eks.cluster_security_group_id
}
output "cluster_name" {
description = "Cluster Name"
value = module.eks.cluster_name
}