salt.sdb.redis_sdb
Redis SDB module
New in version 2019.2.0.
This module allows access to Redis using an sdb://
URI.
Like all SDB modules, the Redis module requires a configuration profile to be configured in either the minion or master configuration file. This profile requires very little. For example:
sdb_redis: driver: redis host: 127.0.0.1 port: 6379 password: pass db: 1
The driver
refers to the Redis module, all other options are optional. For option details see: https://redis-py.readthedocs.io/en/latest/.
-
Delete a key from the Redis SDB.
salt.sdb.redis_sdb.delete(key, profile=None)
-
Get a value from the Redis SDB.
salt.sdb.redis_sdb.get(key, profile=None)
-
Set a value into the Redis SDB.
salt.sdb.redis_sdb.set_(key, value, profile=None)
© 2021 SaltStack.
Licensed under the Apache License, Version 2.0.
https://docs.saltproject.io/en/latest/ref/sdb/all/salt.sdb.redis_sdb.html