Difference between revisions of "Terraform: output"

From wikieduonline
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
* https://www.terraform.io/docs/language/values/outputs.html
+
https://www.terraform.io/docs/language/values/outputs.html
 +
 
 +
* 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.
 +
* An output block can include a [[precondition]] block.
  
 
== Examples ==
 
== Examples ==

Latest revision as of 08:12, 20 April 2023

https://www.terraform.io/docs/language/values/outputs.html

  • 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.
  • An output block can include a precondition block.

Examples[edit]

Official example[edit]

output "instance_ip_addr" {
  value = aws_instance.server.private_ip
}

Additional examples[edit]

output "your_output_value" {
   value = XXXX
}


Using sensitive value will not be printed on screen but will still be recorded in the state files.

sensitive   = true 

Related terms[edit]

Activities[edit]

See also[edit]

Advertising: