From d54e9b45ec5e36f8a9b3dbf010898b072ab4361c Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Tue, 11 Feb 2020 21:13:22 -0500 Subject: [PATCH] Add an output for the floating ip urn --- main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.tf b/main.tf index 71f3d08..c395bc5 100644 --- a/main.tf +++ b/main.tf @@ -230,3 +230,7 @@ output "droplet_ipv4_address" { output "floating_ip_address" { value = digitalocean_floating_ip.app.ip_address } + +output "floating_ip_urn" { + value = digitalocean_floating_ip.app.urn +}