website: use correct syntax for providers map in upgrade guide

This was using JSON-style syntax rather than HCL-style.
This commit is contained in:
Martin Atkins 2017-11-09 11:22:34 -08:00
parent 11790442a1
commit 1622a63da5
1 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ module "example-use1" {
source = "./example"
providers = {
"aws": "aws.use1",
"aws" = "aws.use1",
}
}
@ -133,7 +133,7 @@ module "example-usw1" {
source = "./example"
providers = {
"aws": "aws.usw1",
"aws" = "aws.usw1",
}
}
```