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.mdx

27 lines
1.2 KiB

---
page_title: Variables and Outputs
description: >-
An overview of input variables, output values, and local values in Terraform
language.
---
⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️
> [!IMPORTANT]
> **Documentation Update:** Product documentation previously located in `/website` has moved to the [`hashicorp/web-unified-docs`](https://github.com/hashicorp/web-unified-docs) repository, where all product documentation is now centralized. Please make contributions directly to `web-unified-docs`, since changes to `/website` in this repository will not appear on developer.hashicorp.com.
⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️
# Variables and Outputs
The Terraform language includes a few kinds of blocks for requesting or
publishing named values.
- [Input Variables](/terraform/language/values/variables) serve as parameters for
a Terraform module, so users can customize behavior without editing the source.
- [Output Values](/terraform/language/values/outputs) are like return values for a
Terraform module.
- [Local Values](/terraform/language/values/locals) are a convenience feature for
assigning a short name to an expression.