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
This commit is contained in:
Peter Hoeg Steffensen 2018-06-11 21:08:23 +02:00 committed by Kristin Laemmert
parent 596c7b2638
commit 8a5cedaae6
1 changed files with 2 additions and 2 deletions

View File

@ -287,8 +287,8 @@ provider "aws" {
module "tunnel" { module "tunnel" {
source = "./tunnel" source = "./tunnel"
providers = { providers = {
"aws.src" = "aws.usw1" aws.src = "aws.usw1"
"aws.dst" = "aws.usw2" aws.dst = "aws.usw2"
} }
} }
``` ```