Rationale for Correct Answer (True):
When terraform apply completes successfully, Terraform prints output values. Outputs from both root and child modules are displayed, but child module outputs must be explicitly exposed through the root module outputs to be visible at the CLI.
Analysis of Incorrect Option:
False: Incorrect, because Terraform does display output values, but only if they are exposed from child modules to the root module.
Key Concept:
Outputs help you extract important information (e.g., IP addresses, resource IDs) from your configuration.
[Reference:Terraform Exam Objective – Read, Generate, and Modify Configurations., , , , , ]
Submit