Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 2.52 KB

File metadata and controls

51 lines (38 loc) · 2.52 KB

image_share_group_token_info

Get info about a Linode Image Share Group Token.

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 Image Share Group Token by label
  linode.cloud.image_share_group_token_info:
    label: example-image-share-group-token

Parameters

Field Type Required Description
token_uuid str Optional The Token UUID of the Image Share Group Token to resolve. (Conflicts With: label)
label str Optional The label of the Image Share Group Token to resolve. (Conflicts With: token_uuid)

Return Values

  • image_share_group_token - The returned Image Share Group Token.

    • Sample Response:
      {
          "created": "2025-08-04T10:09:09",
          "expiry": "2025-08-04T10:09:11",
          "label": "example-token",
          "sharegroup_label": "example-sharegroup",
          "sharegroup_uuid": "e1d0e58b-f89f-4237-84ab-b82077342359",
          "status": "active",
          "token_uuid": "13428362-5458-4dad-b14b-8d0d4d648f8c",
          "updated": "2025-08-04T10:09:10",
          "valid_for_sharegroup_uuid": "e1d0e58b-f89f-4237-84ab-b82077342359"
      }
    • See the Linode API response documentation for a list of returned fields