12 lines
263 B
Terraform
12 lines
263 B
Terraform
|
output "syncthing_ip_address" {
|
||
|
value = digitalocean_droplet.jdormit_syncthing.ipv4_address
|
||
|
}
|
||
|
|
||
|
output "syncthing_urn" {
|
||
|
value = digitalocean_droplet.jdormit_syncthing.urn
|
||
|
}
|
||
|
|
||
|
output "syncthing_volume_urn" {
|
||
|
value = digitalocean_volume.syncthing_volume.urn
|
||
|
}
|