openssh-formula/openssh/auth_map.sls

34 lines
1.1 KiB
Plaintext
Raw Normal View History

2017-03-03 14:17:41 +01:00
include:
- openssh
{% from "openssh/map.jinja" import openssh with context -%}
{%- set openssh_pillar = salt["pillar.get"]("openssh", {}) -%}
{%- set authorized_keys_file = salt["pillar.get"]("sshd_config:AuthorizedKeysFile", None) %}
2018-03-10 16:35:57 +01:00
{%- for store, config in salt["pillar.get"]("openssh:auth_map", {}).items() %}
2017-03-03 14:17:41 +01:00
{%- set store_base = config["source"] %}
# SSH store openssh:auth_map:{{ store }}
2018-03-10 16:35:57 +01:00
{%- for user, keys in config.get("users", {}).items() %}
{%- for key, key_cfg in keys.items() %}
2017-03-03 14:17:41 +01:00
"ssh_auth--{{ store }}--{{ user }}--{{ key }}":
{%- set present = key_cfg.get("present", True) %}
{%- set options = key_cfg.get("options", []) %}
{%- if present %}
ssh_auth.present:
- require:
- service: {{ openssh.service }}
{%- else %}
ssh_auth.absent:
{%- endif %}
- user: {{ user }}
- source: {{ store_base }}/{{ key }}.pub
{%- if authorized_keys_file %}
- config: "{{ authorized_keys_file }}"
{%- endif %}
{%- if options %}
- options: "{{ options }}"
{%- endif %}
{%- endfor %}
{%- endfor %}
{%- endfor %}