-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
46 lines (46 loc) · 1.31 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
output "nodes" {
value = module.infrastructure.nodes
}
output "masters" {
value = module.infrastructure.masters
}
output "vm_rsa_ssh_key_public" {
value = module.infrastructure.vm_rsa_ssh_key_public
sensitive = true
}
output "vm_rsa_ssh_key_private" {
value = module.infrastructure.vm_rsa_ssh_key_private
sensitive = true
}
output "k8s-api-endpont-url" {
value = module.kubernetes-base.k8s-api-endpont-url
}
output "k8s-endpont-ip" {
value = module.kubernetes-base.k8s-endpont-ip
}
output "k8s_kube-token-k8sadmin" {
value = module.k8s-system-services.k8s_kube-token-k8sadmin
sensitive = false
}
output "k8s-admin_file" {
value = module.kubernetes-base.k8s-admin_file
sensitive = true
}
output "k8s-client-key-data" {
value = module.kubernetes-base.k8s-client-key-data
sensitive = true
}
output "k8s-client-certificate-data" {
value = module.kubernetes-base.k8s-client-certificate-data
sensitive = true
}
output "k8s-certificate-authority-data" {
value = module.kubernetes-base.k8s-certificate-authority-data
sensitive = true
}
output "nodes_with_storage_available" {
value = module.k8s-system-services.nodes_with_storage_available
}
output "storage_available" {
value = module.k8s-system-services.storage_available
}