Wheel system wrapper for the Salt key system to be used in interactions with the Salt Master programmatically.
The key module for the wheel system is meant to provide an internal interface for other Salt systems to interact with the Salt Master. The following usage examples assume that a WheelClient is available:
import salt.config import salt.wheel opts = salt.config.master_config('/etc/salt/master') wheel = salt.wheel.WheelClient(opts)
Note that importing and using the WheelClient
must be performed on the same machine as the Salt Master and as the same user that runs the Salt Master, unless external_auth
is configured and the user is authorized to execute wheel functions.
The function documentation starts with the wheel
reference from the code sample above and use the WheelClient
functions to show how they can be called from a Python interpreter.
The wheel key functions can also be called via a salt
command at the CLI using the saltutil execution module
.
Accept keys based on a glob match. Returns a dictionary.
True
. Defaults to False
.True
. Defaults to False
.>>> wheel.cmd('key.accept', ['minion1']) {'minions': ['minion1']}
Accept keys based on a dict of keys. Returns a dictionary.
To include rejected keys in the match along with pending keys, set this to True
. Defaults to False
.
New in version 2016.3.4.
To include denied keys in the match along with pending keys, set this to True
. Defaults to False
.
New in version 2016.3.4.
Example to move a list of keys from the minions_pre
(pending) directory to the minions
(accepted) directory:
>>> wheel.cmd('key.accept_dict', { 'minions_pre': [ 'jerry', 'stuart', 'bob', ], }) {'minions': ['jerry', 'stuart', 'bob']}
Delete keys based on a glob match. Returns a dictionary.
>>> wheel.cmd_async({'fun': 'key.delete', 'match': 'minion1'}) {'jid': '20160826201244808521', 'tag': 'salt/wheel/20160826201244808521'}
Delete keys based on a dict of keys. Returns a dictionary.
>>> wheel.cmd_async({'fun': 'key.delete_dict', 'match': { 'minions': [ 'jerry', 'stuart', 'bob', ], }) {'jid': '20160826201244808521', 'tag': 'salt/wheel/20160826201244808521'}
Return the matching key fingerprints. Returns a dictionary.
>>> wheel.cmd('key.finger', ['minion1']) {'minions': {'minion1': '5d:f6:79:43:5e:d4:42:3f:57:b8:45:a8:7e:a4:6e:ca'}}
Return the fingerprint of the master's public key
>>> wheel.cmd('key.finger_master') {'local': {'master.pub': '5d:f6:79:43:5e:d4:42:3f:57:b8:45:a8:7e:a4:6e:ca'}}
Generate a key pair. No keys are stored on the master. A key pair is returned as a dict containing pub and priv keys. Returns a dictionary containing the the pub
and priv
keys with their generated values.
2048
, which is the default, or greater. If set to a value less than 2048
, the key size will be rounded up to 2048
.>>> wheel.cmd('key.gen') {'pub': '-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBC ... BBPfamX9gGPQTpN9e8HwcZjXQnmg8OrcUl10WHw09SDWLOlnW+ueTWugEQpPt\niQIDAQAB\n -----END PUBLIC KEY-----', 'priv': '-----BEGIN RSA PRIVATE KEY-----\nMIIEpAIBAAKCAQEA42Kf+w9XeZWgguzv ... QH3/W74X1+WTBlx4R2KGLYBiH+bCCFEQ/Zvcu4Xp4bIOPtRKozEQ==\n -----END RSA PRIVATE KEY-----'}
Generate a key pair then accept the public key. This function returns the key pair in a dict, only the public key is preserved on the master. Returns a dictionary.
2048
, which is the default, or greater. If set to a value less than 2048
, the key size will be rounded up to 2048
.force
is set to True
, then the minion's previously accepted key will be overwritten.>>> wheel.cmd('key.gen_accept', ['foo']) {'pub': '-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBC ... BBPfamX9gGPQTpN9e8HwcZjXQnmg8OrcUl10WHw09SDWLOlnW+ueTWugEQpPt\niQIDAQAB\n -----END PUBLIC KEY-----', 'priv': '-----BEGIN RSA PRIVATE KEY-----\nMIIEpAIBAAKCAQEA42Kf+w9XeZWgguzv ... QH3/W74X1+WTBlx4R2KGLYBiH+bCCFEQ/Zvcu4Xp4bIOPtRKozEQ==\n -----END RSA PRIVATE KEY-----'}
We can now see that the foo
minion's key has been accepted by the master:
>>> wheel.cmd('key.list', ['accepted']) {'minions': ['foo', 'minion1', 'minion2', 'minion3']}
Generate minion RSA public keypair
Generate master public-key-signature
Return information about the key. Returns a dictionary.
>>> wheel.cmd('key.key_str', ['minion1']) {'minions': {'minion1': '-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0B ... TWugEQpPt\niQIDAQAB\n-----END PUBLIC KEY-----'}}
List all the keys under a named status. Returns a dictionary.
pre
, un
, and unaccepted
options will list unaccepted/unsigned keys. acc
or accepted
will list accepted/signed keys. rej
or rejected
will list rejected keys. Finally, all
will list all keys.>>> wheel.cmd('key.list', ['accepted']) {'minions': ['minion1', 'minion2', 'minion3']}
List all the keys. Returns a dictionary containing lists of the minions in each salt-key category, including minions
, minions_rejected
, minions_denied
, etc. Returns a dictionary.
>>> wheel.cmd('key.list_all') {'local': ['master.pem', 'master.pub'], 'minions_rejected': [], 'minions_denied': [], 'minions_pre': [], 'minions': ['minion1', 'minion2', 'minion3']}
List all the keys based on a glob match
Reject keys based on a glob match. Returns a dictionary.
True
. Defaults to False
.True
. Defaults to False
.>>> wheel.cmd_async({'fun': 'key.reject', 'match': 'minion1'}) {'jid': '20160826201244808521', 'tag': 'salt/wheel/20160826201244808521'}
Reject keys based on a dict of keys. Returns a dictionary.
To include accepted keys in the match along with pending keys, set this to True
. Defaults to False
.
New in version 2016.3.4.
To include denied keys in the match along with pending keys, set this to True
. Defaults to False
.
New in version 2016.3.4.
>>> wheel.cmd_async({'fun': 'key.reject_dict', 'match': { 'minions': [ 'jerry', 'stuart', 'bob', ], }) {'jid': '20160826201244808521', 'tag': 'salt/wheel/20160826201244808521'}
© 2019 SaltStack.
Licensed under the Apache License, Version 2.0.
https://docs.saltstack.com/en/latest/ref/wheel/all/salt.wheel.key.html