Add host keys from pillar[openssh:known_hosts:static] to `ssh_known_hosts`

This commit is contained in:
Florian Ermisch 2018-04-26 16:56:18 +02:00 committed by Florian Ermisch
parent b93448b5e6
commit 45763f54aa
1 changed files with 3 additions and 1 deletions

View File

@ -66,6 +66,8 @@
{#- Loop over targetted minions -#}
{%- set host_keys = salt['mine.get'](target, keys_function, tgt_type=tgt_type) -%}
{%- set host_names = salt['mine.get'](target, hostname_function, tgt_type=tgt_type) -%}
{%- for host, keys in host_keys|dictsort -%}
{%- do host_keys.update(salt['pillar.get']('openssh:known_hosts:static',
{}).items()) -%}
{%- for host, keys in host_keys| dictsort -%}
{{ known_host_entry(host, host_names, keys) }}
{%- endfor -%}