salt/pillar/global/init.sls
Pratyush Desai f46758fe53
fix firewalld not updating interfaces
Signed-off-by: Pratyush Desai <pratyush.desai@liberta.casa>
2024-06-19 17:31:23 +05:30

40 lines
854 B
Django/Jinja

{%- from slspath ~ '/../map.jinja' import firewall_interfaces, public, internal, backend %}
include:
- role.salt.common
- role.salt.minion
- .mta
- .ssh
managed_header_pound: |
### This file is managed via https://git.com.de/LibertaCasa/salt
### Manual changes will be overwritten
{%- if grains['os'] == 'SUSE' %}
zypper:
refreshdb_force: False
firewalld:
FlushAllOnReload: 'yes'
zones:
internal:
short: Internal
{{ firewall_interfaces(internal) }}
ports:
- comment: node_exporter
port: 9200
protocol: tcp
public:
short: Public
{{ firewall_interfaces(public) }}
{%- if backend | length %}
backend:
{{ firewall_interfaces(backend) }}
{%- endif %}
{%- endif %}
mine_functions:
network.ip_addrs: []
network.ip_addrs6: []
network.interfaces: []