Skip to content

Commit

Permalink
Typo in outputs (#4)
Browse files Browse the repository at this point in the history
Fix typo in outputs
  • Loading branch information
FriedCircuits authored Nov 22, 2021
1 parent c318f6f commit 3b6ea93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/k8s/get-join/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
output "k8s_join" {
description = "Map of config values needed to join a kuberentes cluster."
value = data.external.k8s.result
senstive = true
sensitive = true
}

output "full_join_command" {
description = "Full command to join a worker node to kubernetes cluster."
senstive = true
sensitive = true
value = "kubeadm join ${data.external.k8s.result.host} --token ${data.external.k8s.result.token} --discovery-token-ca-cert-hash ${data.external.k8s.result.cacerthash}"
}

0 comments on commit 3b6ea93

Please sign in to comment.