Merge pull request #4882 from sportebois/f-update-docs-env-stanza-coercion

Change misleading boolean example in env stanza coercion section (#4820)
This commit is contained in:
Preetha
2018-11-16 08:00:56 -06:00
committed by GitHub

View File

@@ -53,13 +53,14 @@ is preserved.
```hcl
env {
key = "true"
key = 1.4
key = "1.4"
"key" = 1.4
"key" = "1.4"
key = true
"key" = true
key = 1.4
key = "1.4"
key = "1"
key = 1
}
```