Skip to content

Latest commit

 

History

History
48 lines (35 loc) · 1.9 KB

ipv6_range_info.md

File metadata and controls

48 lines (35 loc) · 1.9 KB

ipv6_range_info

Get info about a Linode IPv6 range.

Minimum Required Fields

Field Type Required Description
api_token str Required The Linode account personal access token. It is necessary to run the module.
It can be exposed by the environment variable LINODE_API_TOKEN instead.
See details in Usage.

Examples

- name: Get info about an IPv6 range
  linode.cloud.ipv6_range_info:
    range: "2600:3c01::"

Parameters

Field Type Required Description
range str Optional The IPv6 range to access.

Return Values

  • range - The IPv6 range in JSON serialized form.

    • Sample Response:
      {
        "is_bgp": false,
        "linodes": [
          123
        ],
        "prefix": 64,
        "range": "2600:3c01::",
        "region": "us-east"
      }
    • See the Linode API response documentation for a list of returned fields