Typo in zipmap documentation

zipmap does not produce a map with comma in terraform cli
tested with Terraform v1.1.3
This commit is contained in:
GiannakopoulosJ 2022-01-19 16:02:24 +02:00 committed by GitHub
parent 6dcf00aefc
commit 13907690a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ is used in the resulting map.
```
> zipmap(["a", "b"], [1, 2])
{
"a" = 1,
"b" = 2,
"a" = 1
"b" = 2
}
```