home-cloud/k3s_cluster_v2/output.tf

10 lines
253 B
Terraform
Raw Normal View History

2021-12-04 22:38:20 +01:00
output "summary" {
value = module.k3s.summary
}
output "bootstrap_sa" {
description = "Bootstrap ServiceAccount. Can be used by Terraform to provision this cluster."
value = data.kubernetes_secret.sa_credentials.data
sensitive = true
}