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:
parent
596c7b2638
commit
8a5cedaae6
|
@ -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"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue