-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
39 lines (31 loc) · 865 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
35
36
37
38
39
output "cluster" {
value = google_container_cluster.engineering.name
}
output "host" {
value = google_container_cluster.engineering.endpoint
sensitive = true
}
output "cluster_ca_certificate" {
value = base64decode(google_container_cluster.engineering.master_auth.0.cluster_ca_certificate)
sensitive = true
}
output "username" {
value = google_container_cluster.engineering.master_auth.0.username
sensitive = true
}
output "password" {
value = google_container_cluster.engineering.master_auth.0.password
sensitive = true
}
output "enable_consul_and_vault" {
value = var.enable_consul_and_vault
}
output "kubeconfig" {
value = data.template_file.kubeconfig.rendered
}
output "project_id" {
value = google_container_cluster.engineering.project
}
output "region" {
value = data.google_compute_zones.available.region
}