bigchaindb/ntools/one-m/aws/outputs.tf
2016-08-18 09:16:18 +02:00

7 lines
217 B
HCL

# You can get the value of "ip_address" after running terraform apply using:
# $ terraform output ip_address
# You could use that in a script, for example
output "ip_address" {
value = "${aws_eip.ip.public_ip}"
}