# File lib/blimpy/boxes/openstack.rb, line 108
    def associate_ip
      if floating_ip.nil?
        raise Blimpy::UnknownError, "Blimpy cannot associate a floating IP until it's been allocated properly!"
      end
      response = fog.associate_address(@server.id, floating_ip.address)

      unless response.status == 202
        raise Blimpy::UnknownError, "Blimpy failed to associate the IP somehow #{response.inspect}"
      end
    end