community.general.digital_ocean_certificate_facts (0.1.4) — module

Gather information about DigitalOcean certificates

Authors: Abhijeet Kasurde (@Akasurde)

Install collection

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


Add to requirements.yml

  collections:
    - name: community.general
      version: 0.1.4

Description

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

This module was called C(digital_ocean_certificate_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 certificates
  digital_ocean_certificate_info:
    oauth_token: "{{ oauth_token }}"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Gather information about certificate with given id
  digital_ocean_certificate_info:
    oauth_token: "{{ oauth_token }}"
    certificate_id: "892071a0-bb95-49bc-8021-3afd67a210bf"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Get not after information about certificate
  digital_ocean_certificate_info:
  register: resp_out
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- set_fact:
    not_after_date: "{{ item.not_after }}"
  loop: "{{ resp_out.data|json_query(name) }}"
  vars:
    name: "[?name=='web-cert-01']"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- debug: var=not_after_date

Inputs

    
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

certificate_id:
    description:
    - Certificate ID that can be used to identify and reference a certificate.
    required: false

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 certificate information
  returned: success
  sample:
  - created_at: '2017-02-08T16:02:37Z'
    id: 892071a0-bb95-49bc-8021-3afd67a210bf
    name: web-cert-01
    not_after: '2017-02-22T00:23:00Z'
    sha1_fingerprint: dfcc9f57d86bf58e321c2c6c31c7a971be244ac7
  type: list