website: v0.15 upgrade guide had invalid example for tomap(...)
tomap expects an object value with braces, not a tuple value with brackets.
This commit is contained in:
parent
a0f221d04b
commit
751fba49a7
|
@ -203,7 +203,7 @@ upgrading to Terraform v0.15:
|
||||||
```
|
```
|
||||||
|
|
||||||
If you need to update a module which was using the `map` function, you
|
If you need to update a module which was using the `map` function, you
|
||||||
can get the same result by replacing `map(...)` with `tomap([...])`.
|
can get the same result by replacing `map(...)` with `tomap({...})`.
|
||||||
For example:
|
For example:
|
||||||
|
|
||||||
```diff
|
```diff
|
||||||
|
|
Loading…
Reference in New Issue