Output Values
Output values make information about your infrastructure available on the command line, and can expose information for other Terraform configurations to use. Output values are similar to return values in programming languages.
Hands-on: Try the Output Data From Terraform tutorial.
Output values have several uses:
- A child module can use outputs to expose a subset of its resource attributes to a parent module.
- A root module can use outputs to print certain values in the CLI output after
running
terraform apply
. - When using remote state, root module outputs can be
accessed by other configurations via a
terraform_remote_state
data source.
Resource instances managed by Terraform each export attributes whose values can be used elsewhere in configuration. Output values are a way to expose some of that information to the user of your module.
Note: For brevity, output values are often referred to as just "outputs" when the meaning is clear from context.
Declaring an Output Value
Each output value exported by a module must be declared using an output
block:
The label immediately after the output
keyword is the name, which must be a
valid identifier. In a root module, this name is
displayed to the user; in a child module, it can be used to access the output's
value.
The value
argument takes an expression
whose result is to be returned to the user. In this example, the expression
refers to the private_ip
attribute exposed by an aws_instance
resource
defined elsewhere in this module (not shown). Any valid expression is allowed
as an output value.
Note: Outputs are only rendered when Terraform applies your plan. Running
terraform plan
will not render outputs.
Accessing Child Module Outputs
In a parent module, outputs of child modules are available in expressions as
module.<MODULE NAME>.<OUTPUT NAME>
. For example, if a child module named
web_server
declared an output named instance_ip_addr
, you could access that
value as module.web_server.instance_ip_addr
.
Custom Condition Checks
You can use precondition
blocks to specify guarantees about output data. The following examples creates a precondition that checks whether the EC2 instance has an encrypted root volume.
Custom conditions can help capture assumptions, helping future maintainers understand the configuration design and intent. They also return useful information about errors earlier and in context, helping consumers more easily diagnose issues in their configurations.
Refer to Custom Condition Checks for more details.
Optional Arguments
output
blocks can optionally include description
, sensitive
, and depends_on
arguments, which are described in the following sections.
description
— Output Value Documentation
Because the output values of a module are part of its user interface, you can
briefly describe the purpose of each value using the optional description
argument:
The description should concisely explain the purpose of the output and what kind of value is expected. This description string might be included in documentation about the module, and so it should be written from the perspective of the user of the module rather than its maintainer. For commentary for module maintainers, use comments.
sensitive
— Suppressing Values in CLI Output
An output can be marked as containing sensitive material using the optional
sensitive
argument:
Terraform will hide values marked as sensitive in the messages from
terraform plan
and terraform apply
. In the following scenario, our root
module has an output declared as sensitive and a module call with a
sensitive output, which we then use in a resource attribute.
When we run a plan or apply, the sensitive value is redacted from output:
Note: In Terraform versions prior to Terraform 0.14, setting an output
value in the root module as sensitive would prevent Terraform from showing its
value in the list of outputs at the end of terraform apply
. However, the
value could still display in the CLI output for other reasons, like if the
value is referenced in an expression for a resource argument.
Terraform will still record sensitive values in the state, and so anyone who can access the state data will have access to the sensitive values in cleartext. For more information, see Sensitive Data in State.
depends_on
— Explicit Output Dependencies
Since output values are just a means for passing data out of a module, it is usually not necessary to worry about their relationships with other nodes in the dependency graph.
However, when a parent module accesses an output value exported by one of its child modules, the dependencies of that output value allow Terraform to correctly determine the dependencies between resources defined in different modules.
Just as with
resource dependencies,
Terraform analyzes the value
expression for an output value and automatically
determines a set of dependencies, but in less-common cases there are
dependencies that cannot be recognized implicitly. In these rare cases, the
depends_on
argument can be used to create additional explicit dependencies:
The depends_on
argument should be used only as a last resort. When using it,
always include a comment explaining why it is being used, to help future
maintainers understand the purpose of the additional dependency.