scottslowe-learning-tools/terraform/aws/simple-ec2/output.tf
Scott Lowe 0014866674
Clean up simple EC2 environment
Remove hard-coded variables and move to `terraform.tfvars` for better portability. Rename variables file for greater consistency across environments. Add output to display IP address of spawned EC2 instance.

Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
2017-05-25 09:31:56 -06:00

3 lines
81 B
HCL

output "instance_ip_address" {
value = "${aws_instance.test-01.public_ip}"
}