You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/docs/index.html.markdown
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,7 @@ Use the navigation to the left to read about the available resources.
15
15
16
16
```hcl
17
17
provider "kubernetes" {
18
-
config_paths = [
19
-
"~/.kube/config"
20
-
]
18
+
config_path = "~/.kube/config"
21
19
config_context = "my-context"
22
20
}
23
21
@@ -124,6 +122,7 @@ The following arguments are supported:
124
122
*`client_certificate` - (Optional) PEM-encoded client certificate for TLS authentication. Can be sourced from `KUBE_CLIENT_CERT_DATA`.
125
123
*`client_key` - (Optional) PEM-encoded client certificate key for TLS authentication. Can be sourced from `KUBE_CLIENT_KEY_DATA`.
126
124
*`cluster_ca_certificate` - (Optional) PEM-encoded root certificates bundle for TLS authentication. Can be sourced from `KUBE_CLUSTER_CA_CERT_DATA`.
125
+
*`config_path` - (Optional) A path to a kube config files. Can be sourced from `KUBE_CONFIG_PATH`.
127
126
*`config_paths` - (Optional) A list of paths to the kube config files. Can be sourced from `KUBE_CONFIG_PATHS`, which allows `:` to be used to delimit multiple paths.
128
127
*`config_context` - (Optional) Context to choose from the config file. Can be sourced from `KUBE_CTX`.
129
128
*`config_context_auth_info` - (Optional) Authentication info context of the kube config (name of the kubeconfig user, `--user` flag in `kubectl`). Can be sourced from `KUBE_CTX_AUTH_INFO`.
0 commit comments