Files
terraform-aws-eks/examples/_bootstrap/outputs.tf

15 lines
296 B
HCL

output "region" {
description = "AWS region"
value = local.region
}
output "cluster_name" {
description = "Name of EKS Cluster used in tags for subnets"
value = local.cluster_name
}
output "vpc" {
description = "Complete output of VPC module"
value = module.vpc
}