+
+ Floating IPs{' '}
+
+ Floating IPs exist independently of instances and can be attached to and
+ detached from them as needed.
+
+
+ {isFloatingIpAttached && (
+
+
+ Name
+ IP
+ {/* For remove button */}
+
+
+
+ {attachedFloatingIpsData.map((item, index) => (
+
+ {item.name}
+ {item.ip}
+ detachFloatingIp(item.name)}
+ label={`remove floating IP ${item.name}`}
+ />
+
+ ))}
+
+
+ )}
+ {floatingIpList.items.length === 0 ? (
+
+ }
+ title="No floating IPs found"
+ body="Create a floating IP to attach it to this instance"
+ />
+
+ ) : (
+
+
+
+ )}
+
+
+
+
+
+
+
+
+
+
+