-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathoutputs.tf
42 lines (35 loc) · 1.5 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
output "cluster_id" {
description = "an identifier for the resource with format projects/{{project}}/locations/{{zone}}/clusters/{{name}}"
value = module.gke_with_node_group.cluster_id
}
output "cluster_master_version" {
description = "The current version of the master in the cluster. This may be different than the min_master_version set in the config if the master has been updated by GKE."
value = module.gke_with_node_group.cluster_master_version
}
output "client_certificate" {
description = "Base64 encoded public certificate used by clients to authenticate to the Kubernetes cluster."
value = module.gke_with_node_group.client_certificate
sensitive = true
}
output "client_key" {
description = "Base64 encoded private key used by clients to authenticate to the cluster endpoint."
value = module.gke_with_node_group.client_key
sensitive = true
}
output "cluster_ca_certificate" {
description = "Base64 encoded public certificate that is the root certificate of the cluster."
value = module.gke_with_node_group.cluster_ca_certificate
sensitive = true
}
output "endpoint" {
description = "The IP address of this cluster's Kubernetes master."
value = module.gke_with_node_group.endpoint
}
output "vpc_self_link" {
description = "The URI of the created resource"
value = module.vpc_with_subnets.vpc_self_link
}
output "subnet_self_link" {
description = "The URI of the created resource"
value = module.vpc_with_subnets.subnet_self_link
}