mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #32874 from basepi/issue_16196
Add ssh_use_home_key to master config docs/template
This commit is contained in:
commit
a4e4ff257b
2 changed files with 16 additions and 1 deletions
|
@ -350,6 +350,10 @@
|
|||
#ssh_minion_opts:
|
||||
# gpg_keydir: /root/gpg
|
||||
|
||||
# Set this to True to default to using ~/.ssh/id_rsa for salt-ssh
|
||||
# authentication with minions
|
||||
#ssh_use_home_key: False
|
||||
|
||||
##### Master Module Management #####
|
||||
##########################################
|
||||
# Manage how master side modules are loaded.
|
||||
|
|
|
@ -620,9 +620,20 @@ overridden on a per-minion basis in the roster (``minion_opts``)
|
|||
|
||||
.. code-block:: yaml
|
||||
|
||||
minion_opts:
|
||||
ssh_minion_opts:
|
||||
gpg_keydir: /root/gpg
|
||||
|
||||
``ssh_use_home_key``
|
||||
--------------------
|
||||
|
||||
Default: False
|
||||
|
||||
Set this to True to default to using ``~/.ssh/id_rsa`` for salt-ssh
|
||||
authentication with minions
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
ssh_use_home_key: False
|
||||
|
||||
Master Security Settings
|
||||
========================
|
||||
|
|
Loading…
Add table
Reference in a new issue