From 8a5cedaae6281989bcd3bca9d9fa23e1eeaf9c87 Mon Sep 17 00:00:00 2001 From: Peter Hoeg Steffensen Date: Mon, 11 Jun 2018 21:08:23 +0200 Subject: [PATCH] Docs: syntax fix - Removed quotation marks (#18136) The example for parsing multiple providers to a module had quotation marks around the keys. This does not seem to be the correct format --- website/docs/modules/usage.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/modules/usage.html.markdown b/website/docs/modules/usage.html.markdown index 5602cfe97..20e01ce26 100644 --- a/website/docs/modules/usage.html.markdown +++ b/website/docs/modules/usage.html.markdown @@ -287,8 +287,8 @@ provider "aws" { module "tunnel" { source = "./tunnel" providers = { - "aws.src" = "aws.usw1" - "aws.dst" = "aws.usw2" + aws.src = "aws.usw1" + aws.dst = "aws.usw2" } } ```