Update node_config.yml.j2

This commit is contained in:
Andrew Paglusch
2021-10-08 23:59:26 -05:00
committed by GitHub
parent 9993ab09e2
commit 2a1d2aba90

View File

@@ -82,14 +82,14 @@ firewall:
# #
outbound: outbound:
{% for rule in nebula_default_outbound_rules %} {% for rule in nebula_outbound_rules %}
- port: {{ rule.port }} - port: {{ rule.port }}
proto: {{ rule.proto }} proto: {{ rule.proto }}
host: {{ rule.host }} host: {{ rule.host }}
{% endfor %} {% endfor %}
inbound: inbound:
{% for rule in nebula_default_outbound_rules %} {% for rule in nebula_inbound_rules %}
- port: {{ rule.port }} - port: {{ rule.port }}
proto: {{ rule.proto }} proto: {{ rule.proto }}
host: {{ rule.host }} host: {{ rule.host }}