community.general.digital_ocean_tag_info (0.2.1) — module

Gather information about DigitalOcean tags

Authors: Abhijeet Kasurde (@Akasurde)

Install collection

Install with ansible-galaxy collection install community.general:==0.2.1


Add to requirements.yml

  collections:
    - name: community.general
      version: 0.2.1

Description

This module can be used to gather information about DigitalOcean provided tags.

This module was called C(digital_ocean_tag_facts) before Ansible 2.9. The usage did not change.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Gather information about all tags
  digital_ocean_tag_info:
    oauth_token: "{{ oauth_token }}"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Gather information about tag with given name
  digital_ocean_tag_info:
    oauth_token: "{{ oauth_token }}"
    tag_name: "extra_awesome_tag"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Get resources from tag name
  digital_ocean_tag_info:
  register: resp_out
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- set_fact:
    resources: "{{ item.resources }}"
  loop: "{{ resp_out.data|json_query(name) }}"
  vars:
    name: "[?name=='extra_awesome_tag']"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- debug: var=resources

Inputs

    
timeout:
    default: 30
    description:
    - The timeout in seconds used for polling DigitalOcean's API.
    type: int

tag_name:
    description:
    - Tag name that can be used to identify and reference a tag.
    required: false

oauth_token:
    aliases:
    - api_token
    description:
    - DigitalOcean OAuth token.
    - There are several other environment variables which can be used to provide this
      value.
    - i.e., - 'DO_API_TOKEN', 'DO_API_KEY', 'DO_OAUTH_TOKEN' and 'OAUTH_TOKEN'
    type: str

validate_certs:
    default: true
    description:
    - If set to C(no), the SSL certificates will not be validated.
    - This should only set to C(no) used on personally controlled sites using self-signed
      certificates.
    type: bool

Outputs

data:
  description: DigitalOcean tag information
  returned: success
  sample:
  - name: extra-awesome
    resources:
      droplets:
        '...': null
        count: 1
  type: list