Update documentation for removed configure_kubectl_session (#171)

* Updated description of `config_output_path` & `write_kubeconfig` variables

There's no `configure_kubectl_session` anymore.

* Readme: Updated to remove `configure_kubectl_session`

There's no `configure_kubectl_session` anymore.

* Changelog updated
This commit is contained in:
Dominik-K
2018-10-25 17:46:32 +02:00
committed by Max Williams
parent 1652c68a9f
commit 31ec0f7db3
4 changed files with 19 additions and 12 deletions

View File

@@ -13,12 +13,12 @@ variable "cluster_version" {
}
variable "config_output_path" {
description = "Determines where config files are placed if using configure_kubectl_session and you want config files to land outside the current working directory. Should end in a forward slash / ."
description = "Where to save the Kubectl config file (if `write_kubeconfig = true`). Should end in a forward slash `/` ."
default = "./"
}
variable "write_kubeconfig" {
description = "Whether to write a kubeconfig file containing the cluster configuration."
description = "Whether to write a Kubectl config file containing the cluster configuration. Saved to `config_output_path`."
default = true
}