opentofu/examples/digitalocean/outputs.tf
Michael D Roach 465a838f91 Digital Ocean Example.
* Added Readme for this example.

* Base Terraform Digital Ocean Files

* Update Readme to read better

*  Changes to be committed:
	modified:   README.md
2016-05-09 08:04:51 +01:00

8 lines
154 B
HCL

output "Public ip" {
value = "${digitalocean_droplet.mywebserver.ipv4_address}"
}
output "Name" {
value = "${digitalocean_droplet.mywebserver.name}"
}