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
{{ message }}
This repository was archived by the owner on Apr 1, 2022. It is now read-only.
If specifying a kubeconfig path containing a `~/some/random/path` character, be aware that terraform is not expanding the path unless you specify it via `pathexpand("~/some/random/path")`
108
+
109
+
```hcl
110
+
locals {
111
+
k8s_config_path = pathexpand("~/folder/config")
112
+
}
113
+
114
+
resource "kind_cluster" "default" {
115
+
name = "test-cluster"
116
+
kubeconfig_path = local.k8s_config_path
117
+
# ...
118
+
}
119
+
```
120
+
107
121
## Argument Reference
108
122
109
123
*`name` - (Required) The kind name that is given to the created cluster.
0 commit comments