Fixes kubernetes namespace name to have valid format (#13615)

This commit is contained in:
Vishnu Bharathi 2017-04-13 11:54:10 +05:30 committed by Radek Simko
parent 66273ad9b2
commit fb0533ee54
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ resource "kubernetes_namespace" "example" {
mylabel = "label-value"
}
name = "TerraformExampleNamespace"
name = "terraform-example-namespace"
}
}
@ -59,5 +59,5 @@ The following arguments are supported:
Namespaces can be imported using their name, e.g.
```
$ terraform import kubernetes_namespace.n TerraformExampleNamespace
$ terraform import kubernetes_namespace.n terraform-example-namespace
```