Config added to plan generation in outputs

This commit is contained in:
shockrah 2024-06-24 20:52:31 -07:00
parent fb2350077e
commit 2df78721e4
2 changed files with 8 additions and 1 deletions

View File

@ -12,7 +12,7 @@ build_plan() {
}
deploy_plan() {
echo deploy
terraform apply $plan
}
help_prompt() {

View File

@ -12,3 +12,10 @@ resource vultr_kubernetes athens {
max_nodes = var.cluster.pool.max
}
}
output k8s_config {
value = vultr_kubernetes.athens.kube_config
sensitive = true
}