From 1622a63da555c92a6e64cd67ed90d3207e7ec2c4 Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Thu, 9 Nov 2017 11:22:34 -0800 Subject: [PATCH] website: use correct syntax for providers map in upgrade guide This was using JSON-style syntax rather than HCL-style. --- website/upgrade-guides/0-11.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/upgrade-guides/0-11.html.markdown b/website/upgrade-guides/0-11.html.markdown index ae2dd3332..2108f9ca9 100644 --- a/website/upgrade-guides/0-11.html.markdown +++ b/website/upgrade-guides/0-11.html.markdown @@ -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", } } ```