Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 2.13 KB

account_availability_info.md

File metadata and controls

50 lines (33 loc) · 2.13 KB

account_availability_info

Get info about a Linode Account Availability.

WARNING! This module makes use of beta endpoints and requires the C(api_version) field be explicitly set to C(v4beta).

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 the current Linode account availability
  linode.cloud.account_availability_info: 
    api_version: v4beta
    region: us-east

Parameters

Field Type Required Description
region str Required The Region of the Account Availability to resolve.

Return Values

  • account_availability - The returned Account Availability.

    • Sample Response:
      {
        "region": "us-east",
        "available": ["NodeBalancers", "Block Storage", "Kubernetes"],
        "unavailable": ["Linode"]
      }
      
    • See the Linode API response documentation for a list of returned fields