mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-20 01:01:17 -05:00
The new nav structure demanded a few new pages that give context about a feature or workflow. In a few cases, they take text from an existing page. Co-authored-by: Tu Nguyen <im2nguyen@users.noreply.github.com> Co-authored-by: Judith Malnick <judith.patudith@gmail.com>
19 lines
575 B
Markdown
19 lines
575 B
Markdown
---
|
|
layout: "language"
|
|
page_title: "Variables and Outputs"
|
|
---
|
|
|
|
# Variables and Outputs
|
|
|
|
The Terraform language includes a few kinds of blocks for requesting or
|
|
publishing named values.
|
|
|
|
- [Input Variables](/docs/configuration/variables.html) serve as parameters for
|
|
a Terraform module, so users can customize behavior without editing the source.
|
|
|
|
- [Output Values](/docs/configuration/outputs.html) are like return values for a
|
|
Terraform module.
|
|
|
|
- [Local Values](/docs/configuration/locals.html) are a convenience feature for
|
|
assigning a short name to an expression.
|