-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
42 lines (34 loc) · 1.16 KB
/
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
35
36
37
38
39
40
41
42
# ---------------------------------------------------------------
# GKE Outputs
# ---------------------------------------------------------------
output "region" {
value = module.gke.region
}
output "cluster_name" {
description = "Cluster name"
value = module.gke.name
}
output "location" {
description = "The location (region or zone) in which the cluster master will be created"
value = module.gke.location
}
output "zones" {
description = "List of zones in which the cluster resides"
value = module.gke.zones
}
output "service_account" {
description = "The service account to default running nodes as if not overridden in `node_pools`."
value = module.gke.service_account
}
output "node_pools_names" {
description = "List of node pools names"
value = module.gke.node_pools_names
}
output "http_load_balancing_enabled" {
description = "Whether the cluster enables HTTP load balancing"
value = module.gke.http_load_balancing_enabled
}
output "horizontal_pod_autoscaling_enabled" {
description = "Whether the cluster enables horizontal pod autoscaling"
value = module.gke.horizontal_pod_autoscaling_enabled
}