opentofu/examples/digitalocean/outputs.tf
Valentin Pichard c6beaa7ce8 Fmt all the config files
Signed-off-by: Valentin Pichard <valentin.pichard@corp.ovh.com>
2016-09-22 11:49:09 +00:00

8 lines
156 B
HCL

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