Skip to content

Latest commit

 

History

History
66 lines (50 loc) · 3.26 KB

token_list.md

File metadata and controls

66 lines (50 loc) · 3.26 KB

token_list

List and filter on Linode Account tokens.

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: List all of the Personal Access Tokens active for the current user
  linode.cloud.token_list: {}
- name: Resolve all of the Personal Access Tokens active for the current user
  linode.cloud.token_list:
    filters:
      - name: label
        values: myTokenLabel

Parameters

Field Type Required Description
order str Optional The order to list tokens in. (Choices: desc, asc; Default: asc)
order_by str Optional The attribute to order tokens by.
filters (sub-options) list Optional A list of filters to apply to the resulting tokens.
count int Optional The number of results to return. If undefined, all results will be returned.

filters

Field Type Required Description
name str Required The name of the field to filter on. Valid filterable attributes can be found here: https://www.linode.com/docs/api/profile/#personal-access-tokens-list__responses
values list Required A list of values to allow for this field. Fields will pass this filter if at least one of these values matches.

Return Values

  • tokens - The returned tokens.

    • Sample Response:
      [
          {
            "created": "2018-01-01T00:01:01",
            "expiry": "2018-01-01T13:46:32",
            "id": 123,
            "label": "linode-cli",
            "scopes": "*",
            "token": "abcdefghijklmnop"
          }
      ]
    • See the Linode API response documentation for a list of returned fields