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

View File

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