diff --git a/states/ssh/templates/sshd_config.j2 b/states/ssh/templates/sshd_config.j2 index c1d386b..b50d88b 100644 --- a/states/ssh/templates/sshd_config.j2 +++ b/states/ssh/templates/sshd_config.j2 @@ -1,13 +1,14 @@ ## {{ salt['pillar.get']('salt_managed', default='Salt Managed') }} {%- from "ssh/map.jinja" import ssh with context %} +{%- from "ssh/map.jinja" import net with context %} {%- for key, value in ssh.sshd_config.items() %} {{ key }} {{ value }} {%- endfor %} -Match Address {{ salt['pillar.get']('net:ip_networks')|join(',') }} +Match Address {{ net.ip_networks|join(',') }} PasswordAuthentication yes -Match Address {{ salt['pillar.get']('net:ip_networks')|join(',') }} +Match Address {{ net.ip_networks|join(',') }} PasswordAuthentication yes