21 lines
764 B
YAML
21 lines
764 B
YAML
---
|
|
# Copyright (C) 2013-2017 Maciej Delmanowski <drybjed@gmail.com>
|
|
# Copyright (C) 2015-2017 Robin Schneider <ypid@riseup.net>
|
|
# Copyright (C) 2016 Reto Gantenbein <reto.gantenbein@linuxmonk.ch>
|
|
# Copyright (C) 2014-2017 DebOps <https://debops.org/>
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
- name: Manage firewall using ferm
|
|
collections: [ 'debops.debops', 'debops.roles01',
|
|
'debops.roles02', 'debops.roles03' ]
|
|
hosts: [ 'debops_all_hosts', 'debops_service_ferm' ]
|
|
become: True
|
|
|
|
environment: '{{ inventory__environment | d({})
|
|
| combine(inventory__group_environment | d({}))
|
|
| combine(inventory__host_environment | d({})) }}'
|
|
|
|
roles:
|
|
|
|
- role: ferm
|
|
tags: [ 'role::ferm', 'skip::ferm' ]
|