mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
Cosmetic doc changes:
- Having a map 'foo' with a key 'foo' is confusing. - it's -> its
This commit is contained in:
parent
19f9d1c93a
commit
793b986860
website
@ -306,14 +306,14 @@ Then the value of `foo` will be `baz` since it was the last value seen.
|
|||||||
However, for maps, the values are merged:
|
However, for maps, the values are merged:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ terraform apply -var 'foo={foo="bar"}' -var 'foo={bar="baz"}'
|
$ terraform apply -var 'foo={quux="bar"}' -var 'foo={bar="baz"}'
|
||||||
```
|
```
|
||||||
|
|
||||||
The resulting value of `foo` will be:
|
The resulting value of `foo` will be:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
{
|
{
|
||||||
foo = "bar"
|
quux = "bar"
|
||||||
bar = "baz"
|
bar = "baz"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@ -122,7 +122,7 @@ initializes various local settings and data that will be used by subsequent
|
|||||||
commands.
|
commands.
|
||||||
|
|
||||||
Terraform uses a plugin based architecture to support the numerous infrastructure
|
Terraform uses a plugin based architecture to support the numerous infrastructure
|
||||||
and service providers available. As of Terraform version 0.10.0, each "Provider" is it's
|
and service providers available. As of Terraform version 0.10.0, each "Provider" is its
|
||||||
own encapsulated binary distributed separately from Terraform itself. The
|
own encapsulated binary distributed separately from Terraform itself. The
|
||||||
`terraform init` command will automatically download and install any Provider
|
`terraform init` command will automatically download and install any Provider
|
||||||
binary for the providers in use within the configuration, which in this case is
|
binary for the providers in use within the configuration, which in this case is
|
||||||
|
Loading…
Reference in New Issue
Block a user