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 } |
...
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 } |
...