-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathoutput.tf
More file actions
32 lines (24 loc) · 699 Bytes
/
Copy pathoutput.tf
File metadata and controls
32 lines (24 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
output "region" {
description = "The AWS region where resources are created"
value = local.region
}
output "vpc_id" {
description = "The ID of the created VPC"
value = module.vpc.vpc_id
}
output "private_subnets" {
description = "Private subnets used by the EKS cluster"
value = module.vpc.private_subnets
}
output "public_subnets" {
description = "Public subnets used by the EKS cluster"
value = module.vpc.public_subnets
}
output "eks_cluster_name" {
description = "EKS cluster name"
value = module.eks.cluster_name
}
output "eks_cluster_endpoint" {
description = "EKS cluster API endpoint"
value = module.eks.cluster_endpoint
}