12 lines
217 B
Terraform
12 lines
217 B
Terraform
|
output "ip_address" {
|
||
|
value = digitalocean_droplet.syncthing.ipv4_address
|
||
|
}
|
||
|
|
||
|
output "urn" {
|
||
|
value = digitalocean_droplet.syncthing.urn
|
||
|
}
|
||
|
|
||
|
output "volume_urn" {
|
||
|
value = digitalocean_volume.syncthing_volume.urn
|
||
|
}
|