mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Add documentation for external pillar cmd json
This commit is contained in:
parent
f7787f2d93
commit
0a98359776
1 changed files with 18 additions and 0 deletions
|
@ -1,5 +1,23 @@
|
|||
"""
|
||||
Execute a command and read the output as JSON. The JSON data is then directly overlaid onto the minion's Pillar data.
|
||||
|
||||
|
||||
Configuring the CMD_JSON ext_pillar
|
||||
====================================
|
||||
|
||||
Set the following Salt config to setup cmd json result as external pillar source:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
ext_pillar:
|
||||
- cmd_json: 'echo {\"arg\":\"value\"}'
|
||||
|
||||
This will run the command ``echo {arg: value}`` on the master.
|
||||
|
||||
|
||||
Module Documentation
|
||||
====================
|
||||
|
||||
"""
|
||||
|
||||
import logging
|
||||
|
|
Loading…
Add table
Reference in a new issue