-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
43 lines (35 loc) · 1.08 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
43
output "kubernetes_endpoint" {
description = "The cluster endpoint"
sensitive = true
value = module.gke.endpoint
}
output "client_token" {
description = "The bearer token for auth"
sensitive = true
value = base64encode(data.google_client_config.default.access_token)
}
output "ca_certificate" {
description = "The cluster ca certificate (base64 encoded)"
value = module.gke.ca_certificate
sensitive = true
}
output "service_account" {
description = "The default service account used for running nodes."
value = module.gke.service_account
}
output "cluster_name" {
description = "Cluster name"
value = module.gke.name
}
output "network_name" {
description = "The name of the VPC being created"
value = module.gcp-network.network_name
}
output "subnet_name" {
description = "The name of the subnet being created"
value = module.gcp-network.subnets_names
}
output "subnet_secondary_ranges" {
description = "The secondary ranges associated with the subnet"
value = module.gcp-network.subnets_secondary_ranges
}