-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutputs.tf
43 lines (36 loc) · 1.15 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_api_server_url" {
description = "RKE k8s cluster api server url"
value = rke_cluster.rke_cluster.api_server_url
}
output "kubernetes_client_cert" {
description = "RKE k8s cluster client certificate"
value = rke_cluster.rke_cluster.client_cert
sensitive = true
}
output "kubernetes_client_key" {
description = "RKE k8s cluster client key"
value = rke_cluster.rke_cluster.client_key
sensitive = true
}
output "kubernetes_ca_crt" {
description = "RKE k8s cluster CA certificate"
value = rke_cluster.rke_cluster.ca_crt
sensitive = true
}
output "kube_config_yaml" {
description = "RKE k8s cluster kube config yaml"
value = rke_cluster.rke_cluster.kube_config_yaml
sensitive = true
}
output "lb_address" {
description = "HCloud loadbalancer address"
value = hcloud_load_balancer.rke_lb.ipv4
}
output "hcloud_ssh_key_public" {
description = "registered ssh public key on your Hetzner Cloud machines."
value = local.public_key
}
output "hcloud_ssh_key_private" {
description = "registered ssh private key on your Hetzner Cloud machines."
value = local.private_key
}