mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-14 04:01:09 -04:00
* Added Readme for this example. * Base Terraform Digital Ocean Files * Update Readme to read better * Changes to be committed: modified: README.md
8 lines
154 B
HCL
8 lines
154 B
HCL
output "Public ip" {
|
|
value = "${digitalocean_droplet.mywebserver.ipv4_address}"
|
|
}
|
|
|
|
output "Name" {
|
|
value = "${digitalocean_droplet.mywebserver.name}"
|
|
}
|