website/docs: provider aliases in the JSON format

Fixes #24889
This commit is contained in:
Jean Dupouy 2020-05-13 15:52:26 +02:00 committed by GitHub
parent 9a5e5bb5fc
commit a54bb124a9
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"
}
]
}
}
```