-
Notifications
You must be signed in to change notification settings - Fork 4
/
outputs.tf
34 lines (28 loc) · 1006 Bytes
/
outputs.tf
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
30
31
32
33
34
output "cluster_endpoint" {
description = "Endpoint for EKS control plane."
value = module.eks.cluster_endpoint
}
output "cluster_security_group_id" {
description = "Security group ids attached to the cluster control plane."
value = module.eks.cluster_security_group_id
}
output "kubectl_config" {
description = "kubectl config as generated by the module."
value = module.eks.kubeconfig
}
output "config_map_aws_auth" {
description = "A kubernetes configuration to authenticate to this EKS cluster."
value = module.eks.config_map_aws_auth
}
output "region" {
description = "AWS region."
value = var.region
}
output "autoscaling_groups_names" {
description = "Auto scaling groups created to be used as worker node pools."
value = module.eks.autoscaling_groups_names
}
output "autoscaling_group_scaling_configs" {
description = "Scaling config of auto scaling groups created."
value = module.eks.autoscaling_group_scaling_configs
}