mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-25 10:00:44 -05:00
Signed-off-by: Janos <86970079+janosdebugs@users.noreply.github.com> Signed-off-by: Damian Stasik <920747+damianstasik@users.noreply.github.com> Signed-off-by: Roman Grinovski <roman.grinovski@gmail.com> Co-authored-by: Damian Stasik <920747+damianstasik@users.noreply.github.com> Co-authored-by: Roman Grinovski <roman.grinovski@gmail.com>
19 lines
606 B
Plaintext
19 lines
606 B
Plaintext
---
|
|
description: >-
|
|
An overview of input variables, output values, and local values in OpenTofu
|
|
language.
|
|
---
|
|
|
|
# Variables and Outputs
|
|
|
|
The OpenTofu language includes a few kinds of blocks for requesting or
|
|
publishing named values.
|
|
|
|
- [Input Variables](../../language/values/variables.mdx) serve as parameters for
|
|
a module, so users can customize behavior without editing the source.
|
|
|
|
- [Output Values](../../language/values/outputs.mdx) are like return values for a module.
|
|
|
|
- [Local Values](../../language/values/locals.mdx) are a convenience feature for
|
|
assigning a short name to an expression.
|