Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion examples/kubernetes-multi-service/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,15 @@ terraform {
variable "step1_use_kubeconfig" {
type = bool
sensitive = true
description = "Use local ~/.kube/config? (true/false)"
description = <<-EOF
Use host kubeconfig? (true/false)

If true, a valid "~/.kube/config" must be present on the Coder host. This
is likely not your local machine unless you are using `coder server --dev.`

If false, proceed for instructions creating a ServiceAccount on your existing
Kubernetes cluster.
EOF
}

variable "step2_cluster_host" {
Expand Down