I have a use case where I need to re-use detached Floating IPs. Is there a way to do this in Terraform? I've tried:
`
data "openstack_networking_floatingip_v2" "fips" {
status = "DOWN"
}
`
to get a list of detached IPs, but I get an error saying there is more than one Floating IP (Which is true).
Is there a good way to get detached floating IPs as a data resource in terraform? The alternative is passing an array of available IPs via a wrapper script with the command outlined here: Reuse detached floating IPs in OpenStack