Add documentation for external pillar cmd json

This commit is contained in:
Megan Wilhite 2023-07-21 12:51:45 -06:00 committed by Pedro Algarvio
parent f7787f2d93
commit 0a98359776

View file

@ -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