Merge pull request #33604 from hashicorp/crw-patch-1

This commit is contained in:
Craig Wright 2023-07-31 10:59:22 -07:00 committed by GitHub
commit 52c7332d8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,19 +12,19 @@ convert types automatically where required. Use the explicit type conversion
functions only to normalize types returned in module outputs.
Only the primitive types (string, number, and bool) and `null` can be converted to string.
All other values will produce an error.
`tostring(null)` produces a `null` value of type `string`. All other values produce an error.
## Examples
```
> tostring("hello")
hello
"hello"
> tostring(1)
1
"1"
> tostring(true)
true
"true"
> tostring(null)
null
tostring(null)
> tostring([])
Error: Invalid function argument