mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
website: use correct style for providers map in upgrade guide
We don't generally use comma separators for map elements in HCL, because the newline implies it.
This commit is contained in:
parent
1622a63da5
commit
071e746edf
@ -125,7 +125,7 @@ module "example-use1" {
|
|||||||
source = "./example"
|
source = "./example"
|
||||||
|
|
||||||
providers = {
|
providers = {
|
||||||
"aws" = "aws.use1",
|
"aws" = "aws.use1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -133,7 +133,7 @@ module "example-usw1" {
|
|||||||
source = "./example"
|
source = "./example"
|
||||||
|
|
||||||
providers = {
|
providers = {
|
||||||
"aws" = "aws.usw1",
|
"aws" = "aws.usw1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user