ansible.builtin.awall (v2.9.27) — module

Manage awall policies

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

Authors: Ted Trask (@tdtrask) <ttrask01@yahoo.com>

stableinterface | supported by community

Install Ansible via pip

Install with pip install ansible==2.9.27

Description

This modules allows for enable/disable/activate of I(awall) policies.

Alpine Wall (I(awall)) generates a firewall configuration from the enabled policy files and activates the configuration on the system.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Enable "foo" and "bar" policy
  awall:
    name: [ foo bar ]
    state: enabled
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Disable "foo" and "bar" policy and activate new rules
  awall:
    name:
    - foo
    - bar
    state: disabled
    activate: no
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Activate currently enabled firewall rules
  awall:
    activate: yes

Inputs

    
name:
    description:
    - One or more policy names.
    type: list

state:
    choices:
    - disabled
    - enabled
    default: enabled
    description:
    - Whether the policies should be enabled or disabled.
    type: str

activate:
    default: false
    description:
    - Activate the new firewall rules.
    - Can be run with other steps or on its own.
    type: bool