Skip to content

Latest commit

 

History

History
78 lines (48 loc) · 1.75 KB

metal_reserved_ip_block_info.md

File metadata and controls

78 lines (48 loc) · 1.75 KB

metal_reserved_ip_block_info

Gather list of reserved IP blocks matching the specified criteria

Examples

- name: Gather list of public_ipv4 reserved_ip_blocks in a project
  hosts: localhost
  tasks:
  - equinix.cloud.metal_reserved_ip_block_info:
      type: public_ipv4
      project_id: 2a5122b9-c323-4d5c-b53c-9ad3f54273e7
- name: Gather list of public_ipv6 reserved_ip_blocks in a project in metro ams
  hosts: localhost
  tasks:
  - equinix.cloud.metal_reserved_ip_block_info:
      type: public_ipv6
      project_id: 2a5122b9-c323-4d5c-b53c-9ad3f54273e7
      metro: ams

Parameters

Field Type Required Description
type str Required The type of IP address to list (Choices: public_ipv4, public_ipv6, private_ipv4, global_ipv4, vrf)
project_id str Required UUID of the project to list IP addresses for
metro str Optional The metro to list IP addresses for

Return Values

Sample Response for resources

{
  "address_family": 4,
  "customdata": {},
  "details": "some desc fff",
  "id": "16148fad-7839-4c63-b33f-0ecfec4f9e29",
  "management": false,
  "metro": "da",
  "netmask": "255.255.255.255",
  "network": "145.40.102.107",
  "project_id": "52000fb2-ee46-4673-93a8-de2c2bdba33b",
  "public": true,
  "quantity": 1,
  "tags": [],
  "type": "public_ipv4"
}