forked from gruntwork-io/terraform-google-gke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
30 lines (25 loc) · 838 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
output "cluster_endpoint" {
description = "The IP address of the cluster master."
sensitive = true
value = module.gke_cluster.endpoint
}
output "client_certificate" {
description = "Public certificate used by clients to authenticate to the cluster endpoint."
value = module.gke_cluster.client_certificate
}
output "client_key" {
description = "Private key used by clients to authenticate to the cluster endpoint."
sensitive = true
value = module.gke_cluster.client_key
}
output "cluster_ca_certificate" {
description = "The public certificate that is the root of trust for the cluster."
sensitive = true
value = module.gke_cluster.cluster_ca_certificate
}
output "network" {
value = module.vpc_network.network
}
output "subnet" {
value = module.vpc_network.private_subnetwork
}