mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-26 00:16:25 -06:00
465a838f91
* 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}"
|
|
}
|