opentofu/examples/aws-eip/outputs.tf
2015-06-09 15:57:17 -04:00

7 lines
129 B
HCL

output "address" {
value = "${aws_instance.web.private_ip}"
}
output "elastic ip" {
value = "${aws_eip.default.public_ip}"
}