ansible.builtin._digital_ocean_account_facts (v2.9.13) — module

Gather information about DigitalOcean User account

| "added in version" 2.6 of ansible.builtin"

Authors: Abhijeet Kasurde (@Akasurde)

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.9.13

Description

This module can be used to gather information about User account.

This module was called C(digital_ocean_account_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 user account
  digital_ocean_account_info:
    oauth_token: "{{ oauth_token }}"

Inputs

    
baseurl:
    default: https://api.digitalocean.com/v2
    description:
    - DigitalOcean API base url.
    type: str

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

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 account information
  returned: success
  sample:
    droplet_limit: 10
    email: testuser1@gmail.com
    email_verified: true
    floating_ip_limit: 3
    status: active
    status_message: ''
    uuid: aaaaaaaaaaaaaa
  type: dict