ansible.builtin.digital_ocean_firewall_facts (v2.8.13) — module

Gather facts about DigitalOcean firewalls

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

Authors: Anthony Bond (@BondAnthony)

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.8.13

Description

This module can be used to gather facts about DigitalOcean firewalls.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Gather facts about all firewalls
  digital_ocean_firewall_facts:
    oauth_token: "{{ oauth_token }}"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Gather facts about a specific firewall by name
  digital_ocean_firewall_facts:
    oauth_token: "{{ oauth_token }}"
    name: "firewall_name"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Gather information from a firewall rule
  digital_ocean_firewall_facts:
    name: SSH
  register: resp_out
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- set_fact:
    firewall_id: "{{ resp_out.data.id }}"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- debug:
    msg: "{{ firewall_id }}"

Inputs

    
name:
    description:
    - Firewall rule name that can be used to identify and reference a specific firewall
      rule.
    required: false

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 firewall facts
  returned: success
  sample:
  - created_at: '2018-01-15T07:04:25Z'
    droplet_ids:
    - 87426985
    id: 435tbg678-1db53-32b6-t543-28322569t252
    inbound_rules:
    - ports: '9100'
      protocol: tcp
      sources:
        addresses:
        - 1.1.1.1
    name: metrics
    outbound_rules: []
    pending_changes: []
    status: succeeded
    tags: []
  type: list