Merge pull request #24942 from izeau/patch-1

website/docs: provider aliases in the JSON format
This commit is contained in:
Petros Kolyvas 2020-05-13 11:59:09 -04:00 committed by GitHub
commit 95ad52de11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 4 deletions

View File

@ -436,10 +436,15 @@ values are not interpreted as string templates.
```json
{
"provider": {
"aws": {
"alias": "usw1",
"region": "us-west-1"
}
"aws": [
{
"region": "us-east-1"
},
{
"alias": "usw1",
"region": "us-west-1"
}
]
}
}
```