From a54bb124a98c8b587e1e00c654020168755e1dfc Mon Sep 17 00:00:00 2001 From: Jean Dupouy Date: Wed, 13 May 2020 15:52:26 +0200 Subject: [PATCH] website/docs: provider aliases in the JSON format Fixes #24889 --- website/docs/configuration/syntax-json.html.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/website/docs/configuration/syntax-json.html.md b/website/docs/configuration/syntax-json.html.md index 58bb8daea3..ce00be969f 100644 --- a/website/docs/configuration/syntax-json.html.md +++ b/website/docs/configuration/syntax-json.html.md @@ -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" + } + ] } } ```