Complete the code to display the output values after applying Terraform.
terraform [1]The terraform output command shows the values of outputs defined in your Terraform configuration after you apply it.
Complete the command to show a specific output named 'instance_ip'.
terraform output [1]Adding the output variable name after terraform output shows only that specific output value.
Fix the error in the command to output all values in JSON format.
terraform output [1]The -json flag outputs all Terraform outputs in JSON format, which is useful for automation.
Fill both blanks to create a command that outputs the 'db_password' value in JSON format.
terraform output [1] [2]
To output a specific value in JSON, use the -json flag followed by the output name.
Fill all three blanks to output the 'app_url' value without refreshing state and in JSON format.
terraform output [1] [2] [3]
The command specifies the output name app_url, disables state refresh with -refresh=false, and formats output as JSON with -json.