Add openssh:known_hosts:static
to README and pillar.example
This commit is contained in:
parent
45763f54aa
commit
bf9b9a335c
15
README.rst
15
README.rst
@ -64,8 +64,9 @@ distribution.
|
|||||||
``openssh.known_hosts``
|
``openssh.known_hosts``
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
Manages the site-wide ssh_known_hosts file and fills it with the
|
Manages the side-wide ssh_known_hosts file and fills it with the
|
||||||
public SSH host keys of all minions. You can restrict the set of minions
|
public SSH host keys of your minions (collected via the Salt mine)
|
||||||
|
and of hosts listed in you pillar data. You can restrict the set of minions
|
||||||
whose keys are listed by using the pillar data ``openssh:known_hosts:target``
|
whose keys are listed by using the pillar data ``openssh:known_hosts:target``
|
||||||
and ``openssh:known_hosts:tgt_type`` (those fields map directly to the
|
and ``openssh:known_hosts:tgt_type`` (those fields map directly to the
|
||||||
corresponding attributes of the ``mine.get`` function).
|
corresponding attributes of the ``mine.get`` function).
|
||||||
@ -102,6 +103,16 @@ IPv6 behind one of those DNS entries matches an IPv4 or IPv6 behind the
|
|||||||
official hostname of a minion, the alternate DNS name will be associated to the
|
official hostname of a minion, the alternate DNS name will be associated to the
|
||||||
minion's public SSH host key.
|
minion's public SSH host key.
|
||||||
|
|
||||||
|
To add public keys of hosts not among your minions list them under the
|
||||||
|
pillar key ``openssh:known_hosts:static``::
|
||||||
|
|
||||||
|
openssh:
|
||||||
|
known_hosts:
|
||||||
|
static:
|
||||||
|
github.com: 'ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq[...]'
|
||||||
|
gitlab.com: 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABA[...]'
|
||||||
|
|
||||||
|
|
||||||
``openssh.moduli``
|
``openssh.moduli``
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
|
@ -307,6 +307,10 @@ openssh:
|
|||||||
# tgt_type: 'glob'
|
# tgt_type: 'glob'
|
||||||
# To activate the defaults you can just set an empty dict.
|
# To activate the defaults you can just set an empty dict.
|
||||||
#hostnames: {}
|
#hostnames: {}
|
||||||
|
# Here you can list keys for hosts which are not among your minions:
|
||||||
|
static:
|
||||||
|
github.com: 'ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGm[...]'
|
||||||
|
gitlab.com: 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsj2bN[...]'
|
||||||
|
|
||||||
# specify DH parameters (see /etc/ssh/moduli)
|
# specify DH parameters (see /etc/ssh/moduli)
|
||||||
moduli: |
|
moduli: |
|
||||||
|
Loading…
Reference in New Issue
Block a user