Skip to content

Latest commit

 

History

History
57 lines (28 loc) · 1.12 KB

metal_available_ips_info.md

File metadata and controls

57 lines (28 loc) · 1.12 KB

metal_available_ips_info

Get list of avialable IP addresses from a reserved IP block

Examples

name: available addresses from reservation
equinix.cloud.metal_available_ips_info:
  reserved_ip_block_id: "{{ ip_reservation.id }}"
  cidr: 32
  register: available_ips

Parameters

Field Type Required Description
reserved_ip_block_id str Required UUID of the reserved IP block to list available IPs for.
cidr str Optional CIDR of the reserved IP block to list available IPs for.

Return Values

  • available - Available IP addresses from the reservation.

    • Sample Response:
      {
          "available": [
              "147.75.71.192/32"
          ],
      }