You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/website/docs/language/values/index.html.md

684 B

layout page_title description
language Variables and Outputs An overview of input variables, output values, and local values in Terraform language.

Variables and Outputs

The Terraform language includes a few kinds of blocks for requesting or publishing named values.

  • Input Variables serve as parameters for a Terraform module, so users can customize behavior without editing the source.

  • Output Values are like return values for a Terraform module.

  • Local Values are a convenience feature for assigning a short name to an expression.