forked from cetic/fadi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
56 lines (44 loc) · 1.81 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
44
45
46
47
48
49
50
51
52
53
54
output "client_certificate" {
description = "Public certificate used by clients to authenticate to the cluster endpoint."
value = "${base64decode(google_container_cluster.primary.master_auth.0.client_certificate)}"
}
output "client_key" {
description = "Private key used by clients to authenticate to the cluster endpoint."
value = "${base64decode(google_container_cluster.primary.master_auth.0.client_key)}"
}
output "cluster_ca_certificate" {
description = "Public certificate that is the root of trust for the cluster."
value = "${base64decode(google_container_cluster.primary.master_auth.0.cluster_ca_certificate)}"
}
output "endpoint" {
description = "The IP address of this cluster's Kubernetes master."
value = "${google_container_cluster.primary.endpoint}"
}
output "endpoint-minio" {
description = "The static IP address of Minio"
value = "${google_compute_address.static-minio.address}"
}
output "endpoint-superset" {
description = "The static IP address of Superset"
value = "${google_compute_address.static-superset.address}"
}
output "endpoint-jupyterhub" {
description = "The static IP address of Jupyterhub"
value = "${google_compute_address.static-jupyterhub.address}"
}
output "endpoint-grafana" {
description = "The static IP address of Grafana"
value = "${google_compute_address.static-grafana.address}"
}
output "endpoint-nifi" {
description = "The static IP address of Nifi"
value = "${google_compute_address.static-nifi.address}"
}
output "endpoint-pgadmin" {
description = "The static IP address of Pgadmin"
value = "${google_compute_address.static-pgadmin.address}"
}
#output "endpoint-sparkui" {
# description = "The static IP address of Spark UI"
# value = "${google_compute_address.static-sparkui.address}"
#}