Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Terraform

Terraform Output Variables will be available as TF_<output key name> in all CAPS(example: TF_public_ip for below)

Code Block
output "public_ip" {
  value = aws_instance.demo.public_ip
}

...