Merge pull request #229 from mchugh19/master
Support engine configuration
This commit is contained in:
commit
7f41dff871
@ -43,6 +43,22 @@ salt:
|
|||||||
# filter to use for Most other LDAP servers
|
# filter to use for Most other LDAP servers
|
||||||
auth.ldap.filter: {% raw %}'uid={{ username }}'{% endraw %}
|
auth.ldap.filter: {% raw %}'uid={{ username }}'{% endraw %}
|
||||||
|
|
||||||
|
# optional engine configuration
|
||||||
|
engines:
|
||||||
|
slack:
|
||||||
|
token: xoxp-XXXXX-XXXXXXX
|
||||||
|
control: True
|
||||||
|
valid_users:
|
||||||
|
- someuser
|
||||||
|
- otheruser
|
||||||
|
valid_commands:
|
||||||
|
- test.ping
|
||||||
|
- list_jobs
|
||||||
|
aliases:
|
||||||
|
list_jobs:
|
||||||
|
type: runner
|
||||||
|
cmd: jobs.list_jobs
|
||||||
|
|
||||||
# salt minion config:
|
# salt minion config:
|
||||||
minion:
|
minion:
|
||||||
|
|
||||||
|
8
salt/files/master.d/engine.conf
Normal file
8
salt/files/master.d/engine.conf
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#
|
||||||
|
# This file is managed by Salt! Do not edit by hand!
|
||||||
|
#
|
||||||
|
{%- set engines = salt['pillar.get']('salt:engines') -%}
|
||||||
|
{%- if engines %}
|
||||||
|
engines:
|
||||||
|
{{ engines | yaml(False) | indent(2) }}
|
||||||
|
{%- endif -%}
|
Loading…
Reference in New Issue
Block a user