website: Correct unrelated contents on env vars in variables page (#10950)

pull/10548/merge
MooYeol Prescott Lee 10 years ago committed by Paul Stack
parent c8ac1f7f4e
commit 1df2cf7d6b

@ -93,12 +93,6 @@ specify a file. These files are the same syntax as Terraform
configuration files. And like Terraform configuration files, these files
can also be JSON.
#### From environment variables
Terraform will read environment variables in the form of `TF_VAR_name`
to find the value for a variable. For example, the `TF_VAR_access_key`
variable can be set to set the `access_key` variable.
We don't recommend saving usernames and password to version control, But you
can create a local secret variables file and use `-var-file` to load it.
@ -110,6 +104,13 @@ $ terraform plan \
-var-file="secret.tfvars" \
-var-file="production.tfvars"
```
#### From environment variables
Terraform will read environment variables in the form of `TF_VAR_name`
to find the value for a variable. For example, the `TF_VAR_access_key`
variable can be set to set the `access_key` variable.
-> **Note**: Environment variables can only populate string-type variables.
List and map type variables must be populated via one of the other mechanisms.

Loading…
Cancel
Save