Saltstack Official Salt Formula
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

1828 lines
69KB

  1. # This file managed by Salt, do not edit by hand!!
  2. # Based on salt version 2016.11 default config
  3. {% set reserved_keys = ['master', 'minion', 'cloud', 'salt_cloud_certs', 'engines', 'lxc.network_profile', 'lxc.container_profile', 'reactors'] -%}
  4. {% set cfg_salt = pillar.get('salt', {}) -%}
  5. {% set cfg_master = cfg_salt.get('master', {}) -%}
  6. {% set default_keys = [] -%}
  7. {%- macro get_config(configname, default_value) -%}
  8. {%- do default_keys.append(configname) %}
  9. {%- if configname in cfg_master -%}
  10. {{ configname }}: {{ cfg_master[configname]|json }}
  11. {%- elif configname in cfg_salt and configname not in reserved_keys -%}
  12. {{ configname }}: {{ cfg_salt[configname]|json }}
  13. {%- else -%}
  14. #{{ configname }}: {{ default_value|json }}
  15. {%- endif -%}
  16. {%- endmacro -%}
  17. {%- from 'salt/formulas.jinja' import file_roots, formulas with context -%}
  18. ##### Primary configuration settings #####
  19. ##########################################
  20. # This configuration file is used to manage the behavior of the Salt Master.
  21. # Values that are commented out but have an empty line after the comment are
  22. # defaults that do not need to be set in the config. If there is no blank line
  23. # after the comment then the value is presented as an example and is not the
  24. # default.
  25. # The id to be passed in the publish job to minions.
  26. # This is used for MultiSyndics to return the job to the requesting master.
  27. # This must be the same string as the syndic is configured with.
  28. # master_id: None
  29. {{ get_config('master_id', 'None') }}
  30. # Per default, the master will automatically include all config files
  31. # from master.d/*.conf (master.d is a directory in the same directory
  32. # as the main master config file).
  33. {{ get_config('default_include', 'master.d/*.conf') }}
  34. # The address of the interface to bind to:
  35. {{ get_config('interface', '0.0.0.0') }}
  36. # Whether the master should listen for IPv6 connections. If this is set to True,
  37. # the interface option must be adjusted, too. (For example: "interface: '::'")
  38. {{ get_config('ipv6', 'False') }}
  39. # The tcp port used by the publisher:
  40. {{ get_config('publish_port', '4505') }}
  41. # The user under which the salt master will run. Salt will update all
  42. # permissions to allow the specified user to run the master. The exception is
  43. # the job cache, which must be deleted if this user is changed. If the
  44. # modified files cause conflicts, set verify_env to False.
  45. {{ get_config('user', 'root') }}
  46. # The port used by the communication interface. The ret (return) port is the
  47. # interface used for the file server, authentication, job returns, etc.
  48. {{ get_config('ret_port', '4506') }}
  49. # Specify the location of the daemon process ID file:
  50. {{ get_config('pidfile', '/var/run/salt-master.pid') }}
  51. # The root directory prepended to these options: pki_dir, cachedir,
  52. # sock_dir, log_file, autosign_file, autoreject_file, extension_modules,
  53. # key_logfile, pidfile:
  54. {{ get_config('root_dir', '/') }}
  55. # The path to the master's configuration file.
  56. {{ get_config('conf_file', '/etc/salt/master') }}
  57. # Directory used to store public key data:
  58. {{ get_config('pki_dir', '/etc/salt/pki/master') }}
  59. # Key cache. Increases master speed for large numbers of accepted
  60. # keys. Available options: 'sched'. (Updates on a fixed schedule.)
  61. # Note that enabling this feature means that minions will not be
  62. # available to target for up to the length of the maintanence loop
  63. # which by default is 60s.
  64. {{ get_config('key_cache', '') }}
  65. # Directory to store job and cache data:
  66. # This directory may contain sensitive data and should be protected accordingly.
  67. #
  68. {{ get_config('cachedir', '/var/cache/salt/master') }}
  69. # Directory for custom modules. This directory can contain subdirectories for
  70. # each of Salt's module types such as "runners", "output", "wheel", "modules",
  71. # "states", "returners", etc.
  72. {{ get_config('extension_modules', '<no default>') }}
  73. # Directory for custom modules. This directory can contain subdirectories for
  74. # each of Salt's module types such as "runners", "output", "wheel", "modules",
  75. # "states", "returners", "engines", etc.
  76. # Like 'extension_modules' but can take an array of paths
  77. {% if 'module_dirs' in cfg_master -%}
  78. {%- do default_keys.append('module_dirs') %}
  79. module_dirs:
  80. {%- for dir in cfg_master['module_dirs'] %}
  81. - {{ dir}}
  82. {%- endfor -%}
  83. {% elif 'module_dirs' in cfg_salt -%}
  84. module_dirs:
  85. {%- for dir in cfg_salt['module_dirs'] %}
  86. - {{ dir}}
  87. {%- endfor -%}
  88. {% else -%}
  89. #module_dirs: <no default>
  90. # - /var/cache/salt/minion/extmods
  91. {% endif %}
  92. # Verify and set permissions on configuration directories at startup:
  93. {{ get_config('verify_env', 'True') }}
  94. # Set the number of hours to keep old job information in the job cache:
  95. {{ get_config('keep_jobs', '24') }}
  96. # The number of seconds to wait when the client is requesting information
  97. # about running jobs.
  98. {{ get_config('gather_job_timeout', '10') }}
  99. # Set the default timeout for the salt command and api. The default is 5
  100. # seconds.
  101. {{ get_config('timeout', '5') }}
  102. # The loop_interval option controls the seconds for the master's maintenance
  103. # process check cycle. This process updates file server backends, cleans the
  104. # job cache and executes the scheduler.
  105. {{ get_config('loop_interval', '60') }}
  106. # Set the default outputter used by the salt command. The default is "nested".
  107. {{ get_config('output', 'nested') }}
  108. # Set the default output file used by the salt command. Default is to output
  109. # to the CLI and not to a file. Functions the same way as the "--out-file"
  110. # CLI option, only sets this to a single file for all salt commands.
  111. {{ get_config('output_file', 'None') }}
  112. # Return minions that timeout when running commands like test.ping
  113. {{ get_config('show_timeout', 'True') }}
  114. # By default, output is colored. To disable colored output, set the color value
  115. # to False.
  116. {{ get_config('color', 'True') }}
  117. # Do not strip off the colored output from nested results and state outputs
  118. # (true by default).
  119. {{ get_config('strip_colors', 'False') }}
  120. # To display a summary of the number of minions targeted, the number of
  121. # minions returned, and the number of minions that did not return, set the
  122. # cli_summary value to True. (False by default.)
  123. #
  124. {{ get_config('cli_summary', 'False') }}
  125. # Set the directory used to hold unix sockets:
  126. {{ get_config('sock_dir', '/var/run/salt/master') }}
  127. # The master can take a while to start up when lspci and/or dmidecode is used
  128. # to populate the grains for the master. Enable if you want to see GPU hardware
  129. # data for your master.
  130. {{ get_config('enable_gpu_grains', 'False') }}
  131. # The master maintains a job cache. While this is a great addition, it can be
  132. # a burden on the master for larger deployments (over 5000 minions).
  133. # Disabling the job cache will make previously executed jobs unavailable to
  134. # the jobs system and is not generally recommended.
  135. {{ get_config('job_cache', 'True') }}
  136. # Cache minion grains, pillar and mine data via the cache subsystem in the
  137. # cachedir or a database.
  138. {{ get_config('minion_data_cache', 'True') }}
  139. # Cache subsystem module to use for minion data cache.
  140. {{ get_config('cache', 'localfs') }}
  141. # Enables a fast in-memory cache booster and sets the expiration time.
  142. {{ get_config('memcache_expire_seconds', '0') }}
  143. # Set a memcache limit in items (bank + key) per cache storage (driver + driver_opts).
  144. {{ get_config('memcache_max_items', '1024') }}
  145. # Each time a cache storage got full cleanup all the expired items not just the oldest one.
  146. {{ get_config('memcache_full_cleanup', 'False') }}
  147. # Enable collecting the memcache stats and log it on `debug` log level.
  148. {{ get_config('memcache_debug', 'False') }}
  149. # Store all returns in the given returner.
  150. # Setting this option requires that any returner-specific configuration also
  151. # be set. See various returners in salt/returners for details on required
  152. # configuration values. (See also, event_return_queue below.)
  153. {{ get_config('event_return', 'mysql') }}
  154. # On busy systems, enabling event_returns can cause a considerable load on
  155. # the storage system for returners. Events can be queued on the master and
  156. # stored in a batched fashion using a single transaction for multiple events.
  157. # By default, events are not queued.
  158. {{ get_config('event_return_queue', '0') }}
  159. # Only return events matching tags in a whitelist, supports glob matches.
  160. {% if 'event_return_whitelist' in cfg_master -%}
  161. {%- do default_keys.append('event_return_whitelist') %}
  162. event_return_whitelist:
  163. {%- for event_return in cfg_master['event_return_whitelist'] %}
  164. - {{ event_return }}
  165. {%- endfor -%}
  166. {% elif 'event_return_whitelist' in cfg_salt -%}
  167. event_return_whitelist:
  168. {%- for event_return in cfg_salt['event_return_whitelist'] %}
  169. - {{ event_return }}
  170. {%- endfor -%}
  171. {% else -%}
  172. #event_return_whitelist:
  173. # - salt/master/a_tag
  174. # - salt/run/*/ret
  175. {% endif %}
  176. # Store all event returns **except** the tags in a blacklist supports globs.
  177. {% if 'event_return_blacklist' in cfg_master -%}
  178. {%- do default_keys.append('event_return_blacklist') %}
  179. event_return_blacklist:
  180. {%- for event_return in cfg_master['event_return_blacklist'] %}
  181. - {{ event_return }}
  182. {%- endfor -%}
  183. {% elif 'event_return_blacklist' in cfg_salt -%}
  184. event_return_blacklist:
  185. {%- for event_return in cfg_salt['event_return_blacklist'] %}
  186. - {{ event_return }}
  187. {%- endfor -%}
  188. {% else -%}
  189. #event_return_blacklist:
  190. # - salt/master/not_this_tag
  191. # - salt/wheel/*/ret
  192. {% endif %}
  193. # Passing very large events can cause the minion to consume large amounts of
  194. # memory. This value tunes the maximum size of a message allowed onto the
  195. # master event bus. The value is expressed in bytes.
  196. {{ get_config('max_event_size', '1048576') }}
  197. # By default, the master AES key rotates every 24 hours. The next command
  198. # following a key rotation will trigger a key refresh from the minion which may
  199. # result in minions which do not respond to the first command after a key refresh.
  200. #
  201. # To tell the master to ping all minions immediately after an AES key refresh, set
  202. # ping_on_rotate to True. This should mitigate the issue where a minion does not
  203. # appear to initially respond after a key is rotated.
  204. #
  205. # Note that ping_on_rotate may cause high load on the master immediately after
  206. # the key rotation event as minions reconnect. Consider this carefully if this
  207. # salt master is managing a large number of minions.
  208. #
  209. # If disabled, it is recommended to handle this event by listening for the
  210. # 'aes_key_rotate' event with the 'key' tag and acting appropriately.
  211. {{ get_config('ping_on_rotate', 'False') }}
  212. # By default, the master deletes its cache of minion data when the key for that
  213. # minion is removed. To preserve the cache after key deletion, set
  214. # 'preserve_minion_cache' to True.
  215. #
  216. # WARNING: This may have security implications if compromised minions auth with
  217. # a previous deleted minion ID.
  218. {{ get_config('preserve_minion_cache', 'False') }}
  219. # If max_minions is used in large installations, the master might experience
  220. # high-load situations because of having to check the number of connected
  221. # minions for every authentication. This cache provides the minion-ids of
  222. # all connected minions to all MWorker-processes and greatly improves the
  223. # performance of max_minions.
  224. {{ get_config('con_cache', 'False') }}
  225. # The master can include configuration from other files. To enable this,
  226. # pass a list of paths to this option. The paths can be either relative or
  227. # absolute; if relative, they are considered to be relative to the directory
  228. # the main master configuration file lives in (this file). Paths can make use
  229. # of shell-style globbing. If no files are matched by a path passed to this
  230. # option, then the master will log a warning message.
  231. #
  232. # Include a config file from some other path:
  233. # include: /etc/salt/extra_config
  234. #
  235. # Include config from several files and directories:
  236. # include:
  237. # - /etc/salt/extra_config
  238. {{ get_config('include', '[]') }}
  239. ##### Large-scale tuning settings #####
  240. ##########################################
  241. # Max open files
  242. #
  243. # Each minion connecting to the master uses AT LEAST one file descriptor, the
  244. # master subscription connection. If enough minions connect you might start
  245. # seeing on the console (and then salt-master crashes):
  246. # Too many open files (tcp_listener.cpp:335)
  247. # Aborted (core dumped)
  248. #
  249. # By default this value will be the one of `ulimit -Hn`, ie, the hard limit for
  250. # max open files.
  251. #
  252. # If you wish to set a different value than the default one, uncomment and
  253. # configure this setting. Remember that this value CANNOT be higher than the
  254. # hard limit. Raising the hard limit depends on your OS and/or distribution,
  255. # a good way to find the limit is to search the internet. For example:
  256. # raise max open files hard limit debian
  257. #
  258. {{ get_config('max_open_files', '100000') }}
  259. # The number of worker threads to start. These threads are used to manage
  260. # return calls made from minions to the master. If the master seems to be
  261. # running slowly, increase the number of threads. This setting can not be
  262. # set lower than 3.
  263. {{ get_config('worker_threads', '5') }}
  264. # Set the ZeroMQ high water marks
  265. # http://api.zeromq.org/3-2:zmq-setsockopt
  266. # The listen queue size / backlog
  267. {{ get_config('zmq_backlog', '1000') }}
  268. # The publisher interface ZeroMQPubServerChannel
  269. {{ get_config('pub_hwm', '1000') }}
  270. # These two ZMQ HWM settings, salt_event_pub_hwm and event_publisher_pub_hwm
  271. # are significant for masters with thousands of minions. When these are
  272. # insufficiently high it will manifest in random responses missing in the CLI
  273. # and even missing from the job cache. Masters that have fast CPUs and many
  274. # cores with appropriate worker_threads will not need these set as high.
  275. # On deployment with 8,000 minions, 2.4GHz CPUs, 24 cores, 32GiB memory has
  276. # these settings:
  277. #
  278. # salt_event_pub_hwm: 128000
  279. # event_publisher_pub_hwm: 64000
  280. # ZMQ high-water-mark for SaltEvent pub socket
  281. {{ get_config('salt_event_pub_hwm', '20000') }}
  282. # ZMQ high-water-mark for EventPublisher pub socket
  283. {{ get_config('event_publisher_pub_hwm', '10000') }}
  284. # The master may allocate memory per-event and not
  285. # reclaim it.
  286. # To set a high-water mark for memory allocation, use
  287. # ipc_write_buffer to set a high-water mark for message
  288. # buffering.
  289. # Value: In bytes. Set to 'dynamic' to have Salt select
  290. # a value for you. Default is disabled.
  291. {%- if 'ipc_write_buffer' in cfg_master %}
  292. {{ get_config('ipc_write_buffer', 'dynamic') }}
  293. {%- else %}
  294. # ipc_write_buffer: 'dynamic'
  295. {%- endif %}
  296. ##### Security settings #####
  297. ##########################################
  298. # Enable "open mode", this mode still maintains encryption, but turns off
  299. # authentication, this is only intended for highly secure environments or for
  300. # the situation where your keys end up in a bad state. If you run in open mode
  301. # you do so at your own risk!
  302. {{ get_config('open_mode', 'False') }}
  303. # Enable auto_accept, this setting will automatically accept all incoming
  304. # public keys from the minions. Note that this is insecure.
  305. {{ get_config('auto_accept', 'False') }}
  306. # Time in minutes that an incoming public key with a matching name found in
  307. # pki_dir/minion_autosign/keyid is automatically accepted. Expired autosign keys
  308. # are removed when the master checks the minion_autosign directory.
  309. # 0 equals no timeout
  310. {{ get_config('autosign_timeout', '120') }}
  311. # If the autosign_file is specified, incoming keys specified in the
  312. # autosign_file will be automatically accepted. This is insecure. Regular
  313. # expressions as well as globing lines are supported.
  314. {{ get_config('autosign_file', '/etc/salt/autosign.conf') }}
  315. # Works like autosign_file, but instead allows you to specify minion IDs for
  316. # which keys will automatically be rejected. Will override both membership in
  317. # the autosign_file and the auto_accept setting.
  318. {{ get_config('autoreject_file', '/etc/salt/autoreject.conf') }}
  319. # Enable permissive access to the salt keys. This allows you to run the
  320. # master or minion as root, but have a non-root group be given access to
  321. # your pki_dir. To make the access explicit, root must belong to the group
  322. # you've given access to. This is potentially quite insecure. If an autosign_file
  323. # is specified, enabling permissive_pki_access will allow group access to that
  324. # specific file.
  325. {{ get_config('permissive_pki_access', 'False') }}
  326. # Allow users on the master access to execute specific commands on minions.
  327. # This setting should be treated with care since it opens up execution
  328. # capabilities to non root users. By default this capability is completely
  329. # disabled.
  330. #publisher_acl:
  331. # larry:
  332. # - test.ping
  333. # - network.*
  334. # - '*':
  335. # - pkg.*
  336. #
  337. {% if 'publisher_acl' in cfg_master -%}
  338. {%- do default_keys.append('publisher_acl') %}
  339. publisher_acl:
  340. {%- for user, commands in cfg_master['publisher_acl']|dictsort %}
  341. {{ user }}:
  342. {%- for command in commands %}
  343. {%- if command is mapping %}
  344. {%- for target, targetcommands in command.items() %}
  345. - {% raw %}'{% endraw %}{{ target }}{% raw %}'{% endraw %}:
  346. {%- for targetcommand in targetcommands %}
  347. - {% raw %}'{% endraw %}{{ targetcommand }}{% raw %}'{% endraw %}
  348. {%- endfor -%}
  349. {%- endfor -%}
  350. {%- else %}
  351. - {% raw %}'{% endraw %}{{ command }}{% raw %}'{% endraw %}
  352. {%- endif %}
  353. {%- endfor -%}
  354. {%- endfor -%}
  355. {% elif 'publisher_acl' in cfg_salt -%}
  356. publisher_acl:
  357. {%- for user, commands in cfg_salt['publisher_acl']|dictsort %}
  358. {{ user }}:
  359. {%- for command in commands %}
  360. {%- if command is mapping %}
  361. {%- for target, targetcommands in command.items() %}
  362. - {% raw %}'{% endraw %}{{ target }}{% raw %}'{% endraw %}:
  363. {%- for targetcommand in targetcommands %}
  364. - {% raw %}'{% endraw %}{{ targetcommand }}{% raw %}'{% endraw %}
  365. {%- endfor -%}
  366. {%- endfor -%}
  367. {%- else %}
  368. - {% raw %}'{% endraw %}{{ command }}{% raw %}'{% endraw %}
  369. {%- endif %}
  370. {%- endfor -%}
  371. {%- endfor -%}
  372. {% elif 'client_acl' in cfg_master -%}
  373. {%- do default_keys.append('client_acl') %}
  374. publisher_acl:
  375. {%- for name, user in cfg_master['client_acl']|dictsort %}
  376. {{ name}}:
  377. {%- for command in user %}
  378. - {% raw %}'{% endraw %}{{ command }}{% raw %}'{% endraw %}
  379. {%- endfor -%}
  380. {%- endfor -%}
  381. {% elif 'client_acl' in cfg_salt -%}
  382. publisher_acl:
  383. {%- for name, user in cfg_salt['client_acl']|dictsort %}
  384. {{ name }}:
  385. {%- for command in user %}
  386. - {% raw %}'{% endraw %}{{ command }}{% raw %}'{% endraw %}
  387. {%- endfor -%}
  388. {%- endfor -%}
  389. {% else -%}
  390. {%- endif %}
  391. # Blacklist any of the following users or modules
  392. #
  393. # This example would blacklist all non sudo users, including root from
  394. # running any commands. It would also blacklist any use of the "cmd"
  395. # module. This is completely disabled by default.
  396. #
  397. #
  398. # Check the list of configured users in client ACL against users on the
  399. # system and throw errors if they do not exist.
  400. {{ get_config('client_acl_verify', 'True') }}
  401. #
  402. {% if 'publisher_acl_blacklist' in cfg_master %}
  403. {%- do default_keys.append('publisher_acl_blacklist') %}
  404. publisher_acl_blacklist:
  405. users:
  406. {% for user in cfg_master['publisher_acl_blacklist'].get('users', []) %}
  407. - {{ user }}
  408. {% endfor %}
  409. modules:
  410. {% for mod in cfg_master['publisher_acl_blacklist'].get('modules', []) %}
  411. - {{ mod }}
  412. {% endfor %}
  413. {% elif 'publisher_acl_blacklist' in cfg_salt %}
  414. publisher_acl_blacklist:
  415. users:
  416. {% for user in cfg_salt['publisher_acl_blacklist'].get('users', []) %}
  417. - {{ user }}
  418. {% endfor %}
  419. modules:
  420. {% for mod in cfg_salt['publisher_acl_blacklist'].get('modules', []) %}
  421. - {{ mod }}
  422. {% endfor %}
  423. {% elif 'client_acl_blacklist' in cfg_master %}
  424. {%- do default_keys.append('client_acl_blacklist') %}
  425. publisher_acl_blacklist:
  426. users:
  427. {% for user in cfg_master['client_acl_blacklist'].get('users', []) %}
  428. - {{ user }}
  429. {% endfor %}
  430. modules:
  431. {% for mod in cfg_master['client_acl_blacklist'].get('modules', []) %}
  432. - {{ mod }}
  433. {% endfor %}
  434. {% elif 'client_acl_blacklist' in cfg_salt %}
  435. publisher_acl_blacklist:
  436. users:
  437. {% for user in cfg_salt['client_acl_blacklist'].get('users', []) %}
  438. - {{ user }}
  439. {% endfor %}
  440. modules:
  441. {% for mod in cfg_salt['client_acl_blacklist'].get('modules', []) %}
  442. - {{ mod }}
  443. {% endfor %}
  444. {% else %}
  445. #publisher_acl_blacklist:
  446. # users:
  447. # - root
  448. # - '^(?!sudo_).*$' # all non sudo users
  449. # modules:
  450. # - cmd
  451. {% endif %}
  452. #
  453. # WARNING: client_acl and client_acl_blacklist options are deprecated and will
  454. # be removed in the future releases. Use publisher_acl and
  455. # publisher_acl_blacklist instead.
  456. # Enforce publisher_acl & publisher_acl_blacklist when users have sudo
  457. # access to the salt command.
  458. {{ get_config('sudo_acl', 'False') }}
  459. # The external auth system uses the Salt auth modules to authenticate and
  460. # validate users to access areas of the Salt system.
  461. #external_auth:
  462. # pam:
  463. # fred:
  464. # - test.*
  465. {%- if 'external_auth' in cfg_master %}
  466. {%- do default_keys.append('external_auth') %}
  467. external_auth:
  468. {%- for auth, users in cfg_master['external_auth']|dictsort %}
  469. {{ auth }}:
  470. {%- for user, commands in users.items() %}
  471. {{ user }}:
  472. {%- for command in commands %}
  473. {%- if command is mapping %}
  474. {%- for target, targetcommands in command.items() %}
  475. - {% raw %}'{% endraw %}{{ target }}{% raw %}'{% endraw %}:
  476. {%- for targetcommand in targetcommands %}
  477. {%- if targetcommand is mapping %}
  478. {%- for module, options in targetcommand.items() %}
  479. - {% raw %}'{% endraw %}{{ module }}{% raw %}'{% endraw %}:
  480. {%- for category, arguments in options.items() %}
  481. {% raw %}'{% endraw %}{{ category }}{% raw %}'{% endraw %}:
  482. {%- if arguments is mapping %}
  483. {%- for key, argument in arguments.items() %}
  484. {% raw %}'{% endraw %}{{ key }}{% raw %}'{% endraw %}: {% raw %}'{% endraw %}{{ argument }}{% raw %}'{% endraw %}
  485. {%- endfor %}
  486. {%- else %}
  487. {%- for argument in arguments %}
  488. - {% raw %}'{% endraw %}{{ argument }}{% raw %}'{% endraw %}
  489. {%- endfor %}
  490. {%- endif %}
  491. {%- endfor %}
  492. {%- endfor %}
  493. {%- else %}
  494. - {% raw %}'{% endraw %}{{ targetcommand }}{% raw %}'{% endraw %}
  495. {%- endif %}
  496. {%- endfor %}
  497. {%- endfor %}
  498. {%- else %}
  499. - {% raw %}'{% endraw %}{{ command }}{% raw %}'{% endraw %}
  500. {%- endif %}
  501. {%- endfor -%}
  502. {%- endfor -%}
  503. {%- endfor -%}
  504. {%- endif %}
  505. # Time (in seconds) for a newly generated token to live. Default: 12 hours
  506. {{ get_config('token_expire', '43200') }}
  507. #
  508. # Allow eauth users to specify the expiry time of the tokens they generate.
  509. # A boolean applies to all users or a dictionary of whitelisted eauth backends
  510. # and usernames may be given.
  511. # token_expire_user_override:
  512. # pam:
  513. # - fred
  514. # - tom
  515. # ldap:
  516. # - gary
  517. #
  518. #token_expire_user_override: False
  519. # Allow minions to push files to the master. This is disabled by default, for
  520. # security purposes.
  521. {{ get_config('file_recv', 'False') }}
  522. # Set a hard-limit on the size of the files that can be pushed to the master.
  523. # It will be interpreted as megabytes. Default: 100
  524. {{ get_config('file_recv_max_size', '100') }}
  525. # Signature verification on messages published from the master.
  526. # This causes the master to cryptographically sign all messages published to its event
  527. # bus, and minions then verify that signature before acting on the message.
  528. #
  529. # This is False by default.
  530. #
  531. # Note that to facilitate interoperability with masters and minions that are different
  532. # versions, if sign_pub_messages is True but a message is received by a minion with
  533. # no signature, it will still be accepted, and a warning message will be logged.
  534. # Conversely, if sign_pub_messages is False, but a minion receives a signed
  535. # message it will be accepted, the signature will not be checked, and a warning message
  536. # will be logged. This behavior went away in Salt 2014.1.0 and these two situations
  537. # will cause minion to throw an exception and drop the message.
  538. {{ get_config('sign_pub_message', 'False') }}
  539. # Use TLS/SSL encrypted connection between master and minion.
  540. # Can be set to a dictionary containing keyword arguments corresponding to Python's
  541. # 'ssl.wrap_socket' method.
  542. # Default is None.
  543. #ssl:
  544. # keyfile: <path_to_keyfile>
  545. # certfile: <path_to_certfile>
  546. # ssl_version: PROTOCOL_TLSv1_2
  547. # Sign the master auth-replies with a cryptographic signature of the masters public key.
  548. # Please see the tutorial how to use these settings in the Multimaster-PKI with Failover Tutorial
  549. {{ get_config('master_sign_pubkey', 'False') }}
  550. # The customizable name of the signing-key-pair without suffix.
  551. # master_sign_key_name: <filename_without_suffix>
  552. {{ get_config('master_sign', '{}') }}
  553. # The name of the file in the masters pki-directory that holds the pre-calculated
  554. # signature of the masters public-key.
  555. # master_pubkey_signature: <filename>
  556. {{ get_config('master_pubkey_signature', '{}') }}
  557. # Instead of computing the signature for each auth-reply, use a pre-calculated signature.
  558. # The master_pubkey_signature must also be set for this.
  559. {{ get_config('master_use_pubkey_signature', 'False') }}
  560. # Rotate the salt-masters AES-key when a minion-public is deleted with salt-key.
  561. # This is a very important security-setting. Disabling it will enable deleted minions to still
  562. # listen in on the messages published by the salt-master.
  563. # Do not disable this unless it is absolutely clear what this does.
  564. {{ get_config('rotate_aes_key', 'True') }}
  565. # Unique ID attribute name for the user. For Active Directory should be set
  566. # to 'sAMAccountName'. Default value is 'memberUid'.
  567. {{ get_config('auth.ldap.accountattributename', 'memberUid') }}
  568. # Set this to True if LDAP is Active Directory. Default is False
  569. {{ get_config('auth.ldap.activedirectory', False) }}
  570. # Bind to LDAP anonymously to determine group membership
  571. # Active Directory does not allow anonymous binds without special configuration
  572. {{ get_config('auth.ldap.anonymous', False) }}
  573. # The base DN under which users can be found in LDAP
  574. {{ get_config('auth.ldap.basedn', '') }}
  575. # The user Salt authenticates to search for a users' Distinguished Name and
  576. # group membership.
  577. {{ get_config('auth.ldap.binddn', '') }}
  578. # The bind password to go along with the bind dn (binddn).
  579. {{ get_config('auth.ldap.bindpw', '') }}
  580. # The filter used to find the DN associated with a user. For most LDAPs use
  581. # the value {% raw %}'uid={{ username }}'{% endraw %}. For Active Directory use the value
  582. # {% raw %}'sAMAccountName={{username}}'{% endraw %}.
  583. {{ get_config('auth.ldap.filter', '') }}
  584. # The attribute used for user group membership. Defaults to 'memberOf'
  585. {{ get_config('auth.ldap.groupattribute', 'memberOf') }}
  586. # LDAP group class. Use 'group' for Active Directory. Defaults to 'posixGroup'
  587. {{ get_config('auth.ldap.groupclass', 'posixGroup') }}
  588. # To specify an OU that contains group data. Not used for Active Directory
  589. # Default value: 'Groups'
  590. {{ get_config('auth.ldap.groupou', 'Groups') }}
  591. # Allows the administrator to strip off a certain set of domain names
  592. # so the hostnames looked up in the directory service can match the minion IDs.
  593. {{ get_config('auth.ldap.minion_stripdomains', []) }}
  594. # Verify server's TLS certificate. Default value: False
  595. {{ get_config('auth.ldap.no_verify', False) }}
  596. # Only for Active Directory. Default value: 'person'
  597. {{ get_config('auth.ldap.persontype', 'person') }}
  598. # Port to connect via. Default value: '389'
  599. {{ get_config('auth.ldap.port', '389') }}
  600. # LDAP scope level, almost always 2. Default value: 2
  601. {{ get_config('auth.ldap.scope', 2) }}
  602. # Server to auth against. Default value: 'localhost'
  603. {{ get_config('auth.ldap.server', 'localhost') }}
  604. # Use TLS when connecting. Default value: False
  605. {{ get_config('auth.ldap.tls', False) }}
  606. # Server specified in URI format. Overrides .ldap.server, .ldap.port,
  607. # .ldap.tls. Default value: ''
  608. {{ get_config('auth.ldap.uri', '') }}
  609. ##### Salt-SSH Configuration #####
  610. ##########################################
  611. # Pass in an alternative location for the salt-ssh roster file
  612. {{ get_config('roster_file', '/etc/salt/roster') }}
  613. # Define locations for roster files so they can be chosen when using Salt API.
  614. # An administrator can place roster files into these locations. Then when
  615. # calling Salt API, parameter 'roster_file' should contain a relative path to
  616. # these locations. That is, "roster_file=/foo/roster" will be resolved as
  617. # "/etc/salt/roster.d/foo/roster" etc. This feature prevents passing insecure
  618. # custom rosters through the Salt API.
  619. #
  620. {%- if 'rosters' in cfg_master %}
  621. rosters:
  622. {% for name in cfg_master['rosters'] -%}
  623. - {{ name }}
  624. {% endfor -%}
  625. {%- else %}
  626. #rosters:
  627. # - /etc/salt/roster.d
  628. # - /opt/salt/some/more/rosters
  629. {%- endif %}
  630. # The log file of the salt-ssh command:
  631. {{ get_config('ssh_log_file', '/var/log/salt/ssh') }}
  632. # Pass in minion option overrides that will be inserted into the SHIM for
  633. # salt-ssh calls. The local minion config is not used for salt-ssh. Can be
  634. # overridden on a per-minion basis in the roster (`minion_opts`)
  635. #ssh_minion_opts:
  636. # gpg_keydir: /root/gpg
  637. {{ get_config('ssh_minion_opts', '{}') }}
  638. # Set this to True to default to using ~/.ssh/id_rsa for salt-ssh
  639. # authentication with minions
  640. {{ get_config('ssh_use_home_key', 'False') }}
  641. ##### Master Module Management #####
  642. ##########################################
  643. # Manage how master side modules are loaded.
  644. # Add any additional locations to look for master runners:
  645. {{ get_config('runner_dirs', '[]') }}
  646. # Enable Cython for master side modules:
  647. {{ get_config('cython_enable', 'False') }}
  648. ##### State System settings #####
  649. ##########################################
  650. # The state system uses a "top" file to tell the minions what environment to
  651. # use and what modules to use. The state_top file is defined relative to the
  652. # root of the base environment as defined in "File Server settings" below.
  653. {{ get_config('state_top', 'top.sls') }}
  654. # The master_tops option replaces the external_nodes option by creating
  655. # a plugable system for the generation of external top data. The external_nodes
  656. # option is deprecated by the master_tops option.
  657. #
  658. # To gain the capabilities of the classic external_nodes system, use the
  659. # following configuration:
  660. # master_tops:
  661. # ext_nodes: <Shell command which returns yaml>
  662. #
  663. #master_tops: {}
  664. {% if 'master_tops' in cfg_master %}
  665. {%- do default_keys.append('master_tops') %}
  666. master_tops:
  667. {%- for master in cfg_master['master_tops'] -%}
  668. {%- if cfg_master['master_tops'][master] is mapping %}
  669. {{ master }}:
  670. {%- for parameter in cfg_master['master_tops'][master] %}
  671. {{ parameter }}: {{ cfg_master['master_tops'][master][parameter] }}
  672. {%- endfor -%}
  673. {%- elif cfg_master['master_tops'][master] is string %}
  674. {{ master }}: {{ cfg_master['master_tops'][master] }}
  675. {%- elif cfg_master['master_tops'][master] is iterable %}
  676. {{ master }}:
  677. {%- for item in cfg_master['master_tops'][master] %}
  678. - {{ item }}
  679. {%- endfor -%}
  680. {%- else %}
  681. {{ master }}: {{ cfg_master['master_tops'][master] }}
  682. {% endif %}
  683. {%- endfor %}
  684. {% endif %}
  685. # The external_nodes option allows Salt to gather data that would normally be
  686. # placed in a top file. The external_nodes option is the executable that will
  687. # return the ENC data. Remember that Salt will look for external nodes AND top
  688. # files and combine the results if both are enabled!
  689. {{ get_config('external_nodes', 'None') }}
  690. # The renderer to use on the minions to render the state data
  691. {{ get_config('renderer', 'yaml_jinja') }}
  692. # The Jinja renderer can strip extra carriage returns and whitespace
  693. # See http://jinja.pocoo.org/docs/api/#high-level-api
  694. #
  695. # If this is set to True the first newline after a Jinja block is removed
  696. # (block, not variable tag!). Defaults to False, corresponds to the Jinja
  697. # environment init variable "trim_blocks".
  698. {{ get_config('jinja_trim_blocks', 'False') }}
  699. #
  700. # If this is set to True leading spaces and tabs are stripped from the start
  701. # of a line to a block. Defaults to False, corresponds to the Jinja
  702. # environment init variable "lstrip_blocks".
  703. {{ get_config('jinja_lstrip_blocks', 'False') }}
  704. # The failhard option tells the minions to stop immediately after the first
  705. # failure detected in the state execution, defaults to False
  706. {{ get_config('failhard', 'False') }}
  707. # The state_verbose and state_output settings can be used to change the way
  708. # state system data is printed to the display. By default all data is printed.
  709. # The state_verbose setting can be set to True or False, when set to False
  710. # all data that has a result of True and no changes will be suppressed.
  711. {{ get_config('state_verbose', 'True') }}
  712. # The state_output setting changes if the output is the full multi line
  713. # output for each changed state if set to 'full', but if set to 'terse'
  714. # the output will be shortened to a single line. If set to 'mixed', the output
  715. # will be terse unless a state failed, in which case that output will be full.
  716. # If set to 'changes', the output will be full unless the state didn't change.
  717. {{ get_config('state_output', 'full') }}
  718. # Automatically aggregate all states that have support for mod_aggregate by
  719. # setting to 'True'. Or pass a list of state module names to automatically
  720. # aggregate just those types.
  721. #
  722. # state_aggregate:
  723. # - pkg
  724. #
  725. #state_aggregate: False
  726. {{ get_config('state_aggregate', '{}') }}
  727. # Send progress events as each function in a state run completes execution
  728. # by setting to 'True'. Progress events are in the format
  729. # 'salt/job/<JID>/prog/<MID>/<RUN NUM>'.
  730. {{ get_config('state_events', 'False') }}
  731. # Enable extra routines for YAML renderer used states containing UTF characters.
  732. {{ get_config('yaml_utf8', 'False') }}
  733. ##### File Server settings #####
  734. ##########################################
  735. # Salt runs a lightweight file server written in zeromq to deliver files to
  736. # minions. This file server is built into the master daemon and does not
  737. # require a dedicated port.
  738. # The file server works on environments passed to the master, each environment
  739. # can have multiple root directories, the subdirectories in the multiple file
  740. # roots cannot match, otherwise the downloaded files will not be able to be
  741. # reliably ensured. A base environment is required to house the top file.
  742. # Example:
  743. # file_roots:
  744. # base:
  745. # - /srv/salt/
  746. # dev:
  747. # - /srv/salt/dev/services
  748. # - /srv/salt/dev/states
  749. # prod:
  750. # - /srv/salt/prod/services
  751. # - /srv/salt/prod/states
  752. #
  753. {% if 'file_roots' in cfg_master -%}
  754. {%- do default_keys.append('file_roots') %}
  755. {{ file_roots(cfg_master['file_roots']) }}
  756. {%- elif 'file_roots' in cfg_salt -%}
  757. {{ file_roots(cfg_salt['file_roots']) }}
  758. {%- elif formulas|length -%}
  759. {{ file_roots({'base': ['/srv/salt']}) }}
  760. {%- else -%}
  761. #file_roots:
  762. # base:
  763. # - /srv/salt
  764. #
  765. {%- endif %}
  766. # When using multiple environments, each with their own top file, the
  767. # default behaviour is an unordered merge. To prevent top files from
  768. # being merged together and instead to only use the top file from the
  769. # requested environment, set this value to 'same'.
  770. {{ get_config('top_file_merging_strategy', 'merge') }}
  771. # To specify the order in which environments are merged, set the ordering
  772. # in the env_order option. Given a conflict, the last matching value will
  773. # win.
  774. {{ get_config('env_order', '["base", "dev", "prod"]') }}
  775. # If top_file_merging_strategy is set to 'same' and an environment does not
  776. # contain a top file, the top file in the environment specified by default_top
  777. # will be used instead.
  778. {{ get_config('default_top', 'base') }}
  779. # The hash_type is the hash to use when discovering the hash of a file on
  780. # the master server. The default is md5 but sha1, sha224, sha256, sha384
  781. # and sha512 are also supported.
  782. #
  783. # WARNING: While md5 and sha1 are also supported, do not use it due to the high chance
  784. # of possible collisions and thus security breach.
  785. #
  786. # Prior to changing this value, the master should be stopped and all Salt
  787. # caches should be cleared.
  788. {{ get_config('hash_type', 'md5') }}
  789. # The buffer size in the file server can be adjusted here:
  790. {{ get_config('file_buffer_size', '1048576') }}
  791. # A regular expression (or a list of expressions) that will be matched
  792. # against the file path before syncing the modules and states to the minions.
  793. # This includes files affected by the file.recurse state.
  794. # For example, if you manage your custom modules and states in subversion
  795. # and don't want all the '.svn' folders and content synced to your minions,
  796. # you could set this to '/\.svn($|/)'. By default nothing is ignored.
  797. {%- if 'file_ignore_regex' in cfg_master %}
  798. {%- do default_keys.append('file_ignore_regex') %}
  799. file_ignore_regex:
  800. {%- for regex in cfg_master['file_ignore_regex'] %}
  801. - {{ regex }}
  802. {%- endfor %}
  803. {%- elif 'file_ignore_regex' in cfg_salt %}
  804. file_ignore_regex:
  805. {%- for regex in cfg_salt['file_ignore_regex'] %}
  806. - {{ regex }}
  807. {%- endfor %}
  808. {%- else %}
  809. #file_ignore_regex:
  810. # - '/\.svn($|/)'
  811. # - '/\.git($|/)'
  812. {%- endif %}
  813. # A file glob (or list of file globs) that will be matched against the file
  814. # path before syncing the modules and states to the minions. This is similar
  815. # to file_ignore_regex above, but works on globs instead of regex. By default
  816. # nothing is ignored.
  817. {%- if 'file_ignore_glob' in cfg_master %}
  818. {%- do default_keys.append('file_ignore_glob') %}
  819. file_ignore_glob:
  820. {%- for glob in cfg_master['file_ignore_glob'] %}
  821. - '{{ glob }}'
  822. {%- endfor %}
  823. {%- elif 'file_ignore_glob' in cfg_salt %}
  824. file_ignore_glob:
  825. {%- for glob in cfg_salt['file_ignore_glob'] %}
  826. - '{{ glob }}'
  827. {%- endfor %}
  828. {%- else %}
  829. # file_ignore_glob:
  830. # - '*.pyc'
  831. # - '*/somefolder/*.bak'
  832. # - '*.swp'
  833. {%- endif %}
  834. # File Server Backend
  835. #
  836. # Salt supports a modular fileserver backend system, this system allows
  837. # the salt master to link directly to third party systems to gather and
  838. # manage the files available to minions. Multiple backends can be
  839. # configured and will be searched for the requested file in the order in which
  840. # they are defined here. The default setting only enables the standard backend
  841. # "roots" which uses the "file_roots" option.
  842. #fileserver_backend:
  843. # - roots
  844. #
  845. # To use multiple backends list them in the order they are searched:
  846. #fileserver_backend:
  847. # - git
  848. # - roots
  849. {% if 'fileserver_backend' in cfg_master -%}
  850. {%- do default_keys.append('fileserver_backend') %}
  851. fileserver_backend:
  852. {%- for backend in cfg_master['fileserver_backend'] %}
  853. - {{ backend }}
  854. {%- endfor -%}
  855. {%- endif %}
  856. # Uncomment the line below if you do not want the file_server to follow
  857. # symlinks when walking the filesystem tree. This is set to True
  858. # by default. Currently this only applies to the default roots
  859. # fileserver_backend.
  860. {{ get_config('fileserver_followsymlinks', 'False') }}
  861. # Uncomment the line below if you do not want symlinks to be
  862. # treated as the files they are pointing to. By default this is set to
  863. # False. By uncommenting the line below, any detected symlink while listing
  864. # files on the Master will not be returned to the Minion.
  865. {{ get_config('fileserver_ignoresymlinks', 'True') }}
  866. # By default, the Salt fileserver recurses fully into all defined environments
  867. # to attempt to find files. To limit this behavior so that the fileserver only
  868. # traverses directories with SLS files and special Salt directories like _modules,
  869. # enable the option below. This might be useful for installations where a file root
  870. # has a very large number of files and performance is impacted. Default is False.
  871. {{ get_config('fileserver_limit_traversal', 'False') }}
  872. # Salt caches the list of files/symlinks/directories for each fileserver backend
  873. # and environment as they are requested, to guard against a performance bottleneck
  874. # at scale when many minions all ask the fileserver which files are available
  875. # simultaneously. This configuration parameter allows for the max age of that
  876. # cache to be altered.
  877. #
  878. # Set this value to 0 to disable use of this cache altogether, but keep in mind
  879. # that this may increase the CPU load on the master when running a highstate on
  880. # a large number of minions.
  881. #
  882. # Rather than altering this configuration parameter, it may be advisable to use
  883. # the fileserver.clear_list_cache runner to clear these caches.
  884. {{ get_config('fileserver_list_cache_time', '20') }}
  885. # The fileserver can fire events off every time the fileserver is updated,
  886. # these are disabled by default, but can be easily turned on by setting this
  887. # flag to True
  888. {{ get_config('fileserver_events', 'False') }}
  889. # Git File Server Backend Configuration
  890. #
  891. # Optional parameter used to specify the provider to be used for gitfs. Must
  892. # be one of the following: pygit2, gitpython, or dulwich. If unset, then each
  893. # will be tried in that same order, and the first one with a compatible
  894. # version installed will be the provider that is used.
  895. {{ get_config('gitfs_provider', 'pygit2') }}
  896. # Along with gitfs_password, is used to authenticate to HTTPS remotes.
  897. {{ get_config('gitfs_user', 'git') }}
  898. # Along with gitfs_user, is used to authenticate to HTTPS remotes.
  899. # This parameter is not required if the repository does not use authentication.
  900. {{ get_config('gitfs_password', '') }}
  901. # By default, Salt will not authenticate to an HTTP (non-HTTPS) remote.
  902. # This parameter enables authentication over HTTP. Enable this at your own risk.
  903. {{ get_config('gitfs_insecure_auth', 'False') }}
  904. # Along with gitfs_privkey (and optionally gitfs_passphrase), is used to
  905. # authenticate to SSH remotes. This parameter (or its per-remote counterpart)
  906. # is required for SSH remotes.
  907. {{ get_config('gitfs_pubkey', '') }}
  908. # Along with gitfs_pubkey (and optionally gitfs_passphrase), is used to
  909. # authenticate to SSH remotes. This parameter (or its per-remote counterpart)
  910. # is required for SSH remotes.
  911. {{ get_config('gitfs_privkey', '') }}
  912. # This parameter is optional, required only when the SSH key being used to
  913. # authenticate is protected by a passphrase.
  914. {{ get_config('gitfs_passphrase', '') }}
  915. # When using the git fileserver backend at least one git remote needs to be
  916. # defined. The user running the salt master will need read access to the repo.
  917. #
  918. # The repos will be searched in order to find the file requested by a client
  919. # and the first repo to have the file will return it.
  920. # When using the git backend branches and tags are translated into salt
  921. # environments.
  922. # Note: file:// repos will be treated as a remote, so refs you want used must
  923. # exist in that repo as *local* refs.
  924. {% if 'gitfs_remotes' in cfg_master -%}
  925. {%- do default_keys.append('gitfs_remotes') %}
  926. gitfs_remotes:
  927. {%- for remote in cfg_master['gitfs_remotes'] %}
  928. {%- if remote is iterable and remote is not string %}
  929. {%- for repo, children in remote.items() %}
  930. - {{ repo }}:
  931. {%- for child in children %}
  932. {%- for key, value in child.items() %}
  933. - {{ key }}: {{ value }}
  934. {%- endfor -%}
  935. {%- endfor -%}
  936. {%- endfor -%}
  937. {%- else %}
  938. - {{ remote }}
  939. {%- endif -%}
  940. {%- endfor -%}
  941. {%- endif %}
  942. #gitfs_remotes:
  943. # - git://github.com/saltstack/salt-states.git
  944. # - file:///var/git/saltmaster
  945. #
  946. # The gitfs_ssl_verify option specifies whether to ignore ssl certificate
  947. # errors when contacting the gitfs backend. You might want to set this to
  948. # false if you're using a git backend that uses a self-signed certificate but
  949. # keep in mind that setting this flag to anything other than the default of True
  950. # is a security concern, you may want to try using the ssh transport.
  951. {{ get_config('gitfs_ssl_verify', 'True') }}
  952. # The gitfs_root option gives the ability to serve files from a subdirectory
  953. # within the repository. The path is defined relative to the root of the
  954. # repository and defaults to the repository root.
  955. {{ get_config('gitfs_root', 'somefolder/otherfolder') }}
  956. # The gitfs_env_whitelist and gitfs_env_blacklist parameters allow for greater
  957. # control over which branches/tags are exposed as fileserver environments.
  958. {% if 'gitfs_env_whitelist' in cfg_master -%}
  959. {%- do default_keys.append('gitfs_env_whitelist') %}
  960. gitfs_env_whitelist:
  961. {%- for git_env in cfg_master['gitfs_env_whitelist'] %}
  962. - {{ git_env }}
  963. {%- endfor -%}
  964. {% else -%}
  965. # gitfs_env_whitelist:
  966. # - base
  967. # - v1.*
  968. {% endif %}
  969. {% if 'gitfs_env_blacklist' in cfg_master -%}
  970. {%- do default_keys.append('gitfs_env_blacklist') %}
  971. gitfs_env_blacklist:
  972. {%- for git_env in cfg_master['gitfs_env_blacklist'] %}
  973. - {{ git_env }}
  974. {%- endfor -%}
  975. {% else -%}
  976. # gitfs_env_blacklist:
  977. # - bug/*
  978. # - feature/*
  979. {% endif %}
  980. # S3 File Server Backend Configuration
  981. #
  982. # S3 credentials must be set in the master config file.
  983. # Alternatively, if on EC2 these credentials can be automatically
  984. # loaded from instance metadata.
  985. {% if 's3.keyid' in cfg_master -%}
  986. {{ get_config('s3.keyid', '<no default>') }}
  987. {{ get_config('s3.key', '<no default>') }}
  988. {% else -%}
  989. # s3.keyid: GKTADJGHEIQSXMKKRBJ08H
  990. # s3.key: askdjghsdfjkghWupUjasdflkdfklgjsdfjajkghs
  991. {% endif %}
  992. # This fileserver supports two modes of operation for the buckets:
  993. # - A single bucket per environment
  994. # - Multiple environments per bucket
  995. #
  996. # Note that bucket names must be all lowercase both in the AWS console
  997. # and in Salt, otherwise you may encounter SignatureDoesNotMatch
  998. # errors.
  999. #
  1000. # A multiple-environment bucket must adhere to the following root
  1001. # directory structure:
  1002. #
  1003. # s3://<bucket name>/<environment>/<files>
  1004. #
  1005. # This fileserver back-end requires the use of the MD5 hashing
  1006. # algorithm. MD5 may not be compliant with all security policies.
  1007. {% if 's3.buckets' in cfg_master -%}
  1008. {{ get_config('s3.buckets', '<no default>') }}
  1009. {% else -%}
  1010. # s3.buckets: #single bucket per environment
  1011. # production:
  1012. # - bucket1
  1013. # - bucket2
  1014. # staging:
  1015. # - bucket3
  1016. # - bucket4
  1017. #
  1018. # s3.buckets: #multiple environments per bucket
  1019. # - bucket1
  1020. # - bucket2
  1021. # - bucket3
  1022. # - bucket4
  1023. {% endif %}
  1024. ##### Pillar settings #####
  1025. ##########################################
  1026. # Salt Pillars allow for the building of global data that can be made selectively
  1027. # available to different minions based on minion grain filtering. The Salt
  1028. # Pillar is laid out in the same fashion as the file server, with environments,
  1029. # a top file and sls files. However, pillar data does not need to be in the
  1030. # highstate format, and is generally just key/value pairs.
  1031. {% if 'pillar_roots' in cfg_master -%}
  1032. {%- do default_keys.append('pillar_roots') %}
  1033. pillar_roots:
  1034. {%- for name, roots in cfg_master['pillar_roots']|dictsort %}
  1035. {{ name }}:
  1036. {%- for dir in roots %}
  1037. - {{ dir }}
  1038. {%- endfor -%}
  1039. {%- endfor -%}
  1040. {% elif 'pillar_roots' in cfg_salt -%}
  1041. pillar_roots:
  1042. {%- for name, roots in cfg_salt['pillar_roots']|dictsort %}
  1043. {{ name }}:
  1044. {%- for dir in roots %}
  1045. - {{ dir }}
  1046. {%- endfor -%}
  1047. {%- endfor -%}
  1048. {%- else -%}
  1049. #pillar_roots:
  1050. # base:
  1051. # - /srv/pillar
  1052. #
  1053. {%- endif %}
  1054. {% if 'ext_pillar' in cfg_master %}
  1055. {%- do default_keys.append('ext_pillar') %}
  1056. ext_pillar:
  1057. {%- for pillar in cfg_master['ext_pillar'] -%}
  1058. {%- for key in pillar -%}
  1059. {%- if pillar[key] is string %}
  1060. - {{ key }}: {{ pillar[key] }}
  1061. {#- Workaround for missing `is mapping` on CentOS 6, see #193: #}
  1062. {%- elif pillar[key] is iterable and 'dict' not in pillar[key].__class__.__name__ %}
  1063. - {{ key }}:
  1064. {%- for parameter in pillar[key] %}
  1065. {%- if parameter is iterable and parameter is not string %}
  1066. {%- for param, children in parameter.items() %}
  1067. - {{ param }}:
  1068. {%- for child in children %}
  1069. {%- for key, value in child.items() %}
  1070. - {{ key }}: {{ value }}
  1071. {%- endfor -%}
  1072. {%- endfor -%}
  1073. {%- endfor -%}
  1074. {%- else %}
  1075. - {{ parameter }}
  1076. {%- endif %}
  1077. {%- endfor -%}
  1078. {#- Workaround for missing `is mapping` on CentOS 6, see #193: #}
  1079. {%- elif 'dict' in pillar[key].__class__.__name__ and pillar[key] is not string %}
  1080. - {{ key }}:
  1081. {%- for parameter in pillar[key] %}
  1082. {{ parameter }}: {{pillar[key][parameter]}}
  1083. {%- endfor %}
  1084. {%- else %}
  1085. # Error in rendering {{ key }}, please read https://docs.saltstack.com/en/latest/topics/development/external_pillars.html#configuration
  1086. {% endif %}
  1087. {%- endfor -%}
  1088. {%- endfor %}
  1089. {% elif 'ext_pillar' in cfg_salt %}
  1090. ext_pillar:
  1091. {% for pillar in cfg_salt['ext_pillar'] %}
  1092. - {{ pillar.items()[0][0] }}: {{ pillar.items()[0][1] }}
  1093. {% endfor %}
  1094. {% else %}
  1095. #ext_pillar:
  1096. # - hiera: /etc/hiera.yaml
  1097. # - cmd_yaml: cat /etc/salt/yaml
  1098. {% endif %}
  1099. # The ext_pillar_first option allows for external pillar sources to populate
  1100. # before file system pillar. This allows for targeting file system pillar from
  1101. # ext_pillar.
  1102. {{ get_config('ext_pillar_first', 'False') }}
  1103. # The external pillars permitted to be used on-demand using pillar.ext
  1104. {%- if 'on_demand_ext_pillar' in cfg_master %}
  1105. on_demand_ext_pillar:
  1106. {% for name in cfg_master['on_demand_ext_pillar'] -%}
  1107. - {{ name }}
  1108. {% endfor -%}
  1109. {%- else %}
  1110. #on_demand_ext_pillar:
  1111. # - libvirt
  1112. # - virtkey
  1113. {%- endif %}
  1114. # The pillar_gitfs_ssl_verify option specifies whether to ignore ssl certificate
  1115. # errors when contacting the pillar gitfs backend. You might want to set this to
  1116. # false if you're using a git backend that uses a self-signed certificate but
  1117. # keep in mind that setting this flag to anything other than the default of True
  1118. # is a security concern, you may want to try using the ssh transport.
  1119. {{ get_config('pillar_gitfs_ssl_verify', 'True') }}
  1120. # The pillar_opts option adds the master configuration file data to a dict in
  1121. # the pillar called "master". This is used to set simple configurations in the
  1122. # master config file that can then be used on minions.
  1123. {{ get_config('pillar_opts', 'False') }}
  1124. # The pillar_safe_render_error option prevents the master from passing pillar
  1125. # render errors to the minion. This is set on by default because the error could
  1126. # contain templating data which would give that minion information it shouldn't
  1127. # have, like a password! When set true the error message will only show:
  1128. # Rendering SLS 'my.sls' failed. Please see master log for details.
  1129. {{ get_config('pillar_safe_render_error', 'True') }}
  1130. # The pillar_source_merging_strategy option allows you to configure merging strategy
  1131. # between different sources. It accepts five values: none, recurse, aggregate, overwrite,
  1132. # or smart. None will not do any merging at all. Recurse will merge recursively mapping of data.
  1133. # Aggregate instructs aggregation of elements between sources that use the #!yamlex renderer. Overwrite
  1134. # will overwrite elements according the order in which they are processed. This is
  1135. # behavior of the 2014.1 branch and earlier. Smart guesses the best strategy based
  1136. # on the "renderer" setting and is the default value.
  1137. {{ get_config('pillar_source_merging_strategy', 'smart') }}
  1138. # Recursively merge lists by aggregating them instead of replacing them.
  1139. {{ get_config('pillar_merge_lists', 'False') }}
  1140. # Set this option to 'True' to force a 'KeyError' to be raised whenever an
  1141. # attempt to retrieve a named value from pillar fails. When this option is set
  1142. # to 'False', the failed attempt returns an empty string. Default is 'False'.
  1143. {{ get_config('pillar_raise_on_missing', 'False') }}
  1144. # Git External Pillar (git_pillar) Configuration Options
  1145. #
  1146. # Specify the provider to be used for git_pillar. Must be either pygit2 or
  1147. # gitpython. If unset, then both will be tried in that same order, and the
  1148. # first one with a compatible version installed will be the provider that
  1149. # is used.
  1150. {{ get_config('git_pillar_provider', 'pygit2') }}
  1151. # If the desired branch matches this value, and the environment is omitted
  1152. # from the git_pillar configuration, then the environment for that git_pillar
  1153. # remote will be base.
  1154. {{ get_config('git_pillar_base', 'master') }}
  1155. # If the branch is omitted from a git_pillar remote, then this branch will
  1156. # be used instead.
  1157. {{ get_config('git_pillar_branch', 'master') }}
  1158. # Environment to use for git_pillar remotes. This is normally derived from
  1159. # the branch/tag (or from a per-remote env parameter), but if set this will
  1160. # override the process of deriving the env from the branch/tag name.
  1161. {{ get_config('git_pillar_env', '') }}
  1162. # Path relative to the root of the repository where the git_pillar top file
  1163. # and SLS files are located.
  1164. {{ get_config('git_pillar_root', 'pillar') }}
  1165. # Specifies whether or not to ignore SSL certificate errors when contacting
  1166. # the remote repository.
  1167. {{ get_config('git_pillar_ssl_verify', True) }}
  1168. # When set to False, if there is an update/checkout lock for a git_pillar
  1169. # remote and the pid written to it is not running on the master, the lock
  1170. # file will be automatically cleared and a new lock will be obtained.
  1171. {{ get_config('git_pillar_global_lock', False) }}
  1172. # Git External Pillar Authentication Options
  1173. #
  1174. # Along with git_pillar_password, is used to authenticate to HTTPS remotes.
  1175. {{ get_config('git_pillar_user', '') }}
  1176. # Along with git_pillar_user, is used to authenticate to HTTPS remotes.
  1177. # This parameter is not required if the repository does not use authentication.
  1178. {{ get_config('git_pillar_password', '') }}
  1179. # By default, Salt will not authenticate to an HTTP (non-HTTPS) remote.
  1180. # This parameter enables authentication over HTTP.
  1181. {{ get_config('git_pillar_insecure_auth', False) }}
  1182. # Along with git_pillar_privkey (and optionally git_pillar_passphrase),
  1183. # is used to authenticate to SSH remotes.
  1184. {{ get_config('git_pillar_pubkey', '') }}
  1185. # Along with git_pillar_pubkey (and optionally git_pillar_passphrase),
  1186. # is used to authenticate to SSH remotes.
  1187. {{ get_config('git_pillar_privkey', '') }}
  1188. # This parameter is optional, required only when the SSH key being used
  1189. # to authenticate is protected by a passphrase.
  1190. {{ get_config('git_pillar_passphrase', '') }}
  1191. # A master can cache pillars locally to bypass the expense of having to render them
  1192. # for each minion on every request. This feature should only be enabled in cases
  1193. # where pillar rendering time is known to be unsatisfactory and any attendant security
  1194. # concerns about storing pillars in a master cache have been addressed.
  1195. #
  1196. # When enabling this feature, be certain to read through the additional ``pillar_cache_*``
  1197. # configuration options to fully understand the tunable parameters and their implications.
  1198. #
  1199. # Note: setting ``pillar_cache: True`` has no effect on targeting Minions with Pillars.
  1200. # See https://docs.saltstack.com/en/latest/topics/targeting/pillar.html
  1201. {{ get_config('pillar_cache', 'False') }}
  1202. # If and only if a master has set ``pillar_cache: True``, the cache TTL controls the amount
  1203. # of time, in seconds, before the cache is considered invalid by a master and a fresh
  1204. # pillar is recompiled and stored.
  1205. {{ get_config('pillar_cache_ttl', '3600') }}
  1206. # If and only if a master has set `pillar_cache: True`, one of several storage providers
  1207. # can be utililzed.
  1208. #
  1209. # `disk`: The default storage backend. This caches rendered pillars to the master cache.
  1210. # Rendered pillars are serialized and deserialized as msgpack structures for speed.
  1211. # Note that pillars are stored UNENCRYPTED. Ensure that the master cache
  1212. # has permissions set appropriately. (Same defaults are provided.)
  1213. #
  1214. # memory: [EXPERIMENTAL] An optional backend for pillar caches which uses a pure-Python
  1215. # in-memory data structure for maximal performance. There are several caveats,
  1216. # however. First, because each master worker contains its own in-memory cache,
  1217. # there is no guarantee of cache consistency between minion requests. This
  1218. # works best in situations where the pillar rarely if ever changes. Secondly,
  1219. # and perhaps more importantly, this means that unencrypted pillars will
  1220. # be accessible to any process which can examine the memory of the ``salt-master``!
  1221. # This may represent a substantial security risk.
  1222. #
  1223. {{ get_config('pillar_cache_backend', 'disk') }}
  1224. ##### Syndic settings #####
  1225. ##########################################
  1226. # The Salt syndic is used to pass commands through a master from a higher
  1227. # master. Using the syndic is simple. If this is a master that will have
  1228. # syndic servers(s) below it, then set the "order_masters" setting to True.
  1229. #
  1230. # If this is a master that will be running a syndic daemon for passthrough, then
  1231. # the "syndic_master" setting needs to be set to the location of the master server
  1232. # to receive commands from.
  1233. # Set the order_masters setting to True if this master will command lower
  1234. # masters' syndic interfaces.
  1235. {{ get_config('order_masters', 'False') }}
  1236. # If this master will be running a salt syndic daemon, syndic_master tells
  1237. # this master where to receive commands from.
  1238. {{ get_config('syndic_master', 'masterofmasters') }}
  1239. # This is the 'ret_port' of the MasterOfMaster:
  1240. {{ get_config('syndic_master_port', '4506') }}
  1241. # PID file of the syndic daemon:
  1242. {{ get_config('syndic_pidfile', '/var/run/salt-syndic.pid') }}
  1243. # LOG file of the syndic daemon:
  1244. {{ get_config('syndic_log_file', '/var/log/salt/syndic') }}
  1245. # The user under which the salt syndic will run.
  1246. {{ get_config('syndic_user', 'root') }}
  1247. # The behaviour of the multi-syndic when connection to a master of masters failed.
  1248. # Can specify ``random`` (default) or ``ordered``. If set to ``random``, masters
  1249. # will be iterated in random order. If ``ordered`` is specified, the configured
  1250. # order will be used.
  1251. {{ get_config('syndic_failover', 'random') }}
  1252. # The number of seconds for the salt client to wait for additional syndics to
  1253. # check in with their lists of expected minions before giving up.
  1254. {{ get_config('syndic_wait', '5') }}
  1255. ##### Peer Publish settings #####
  1256. ##########################################
  1257. # Salt minions can send commands to other minions, but only if the minion is
  1258. # allowed to. By default "Peer Publication" is disabled, and when enabled it
  1259. # is enabled for specific minions and specific commands. This allows secure
  1260. # compartmentalization of commands based on individual minions.
  1261. # The configuration uses regular expressions to match minions and then a list
  1262. # of regular expressions to match functions. The following will allow the
  1263. # minion authenticated as foo.example.com to execute functions from the test
  1264. # and pkg modules.
  1265. #peer:
  1266. # foo.example.com:
  1267. # - test.*
  1268. # - pkg.*
  1269. #
  1270. # This will allow all minions to execute all commands:
  1271. #peer:
  1272. # .*:
  1273. # - .*
  1274. #
  1275. # This is not recommended, since it would allow anyone who gets root on any
  1276. # single minion to instantly have root on all of the minions!
  1277. {% if 'peer' in cfg_master %}
  1278. {%- do default_keys.append('peer') %}
  1279. peer:
  1280. {% for name, roots in cfg_master['peer'].items() %}
  1281. {{ name }}:
  1282. {% for mod in roots %}
  1283. - {{ mod }}
  1284. {% endfor %}
  1285. {% endfor %}
  1286. {% elif 'peer' in cfg_salt %}
  1287. peer:
  1288. {% for name, roots in cfg_salt['peer'].items() %}
  1289. {{ name }}:
  1290. {% for mod in roots %}
  1291. - {{ mod }}
  1292. {% endfor %}
  1293. {% endfor %}
  1294. {% endif %}
  1295. # Minions can also be allowed to execute runners from the salt master.
  1296. # Since executing a runner from the minion could be considered a security risk,
  1297. # it needs to be enabled. This setting functions just like the peer setting
  1298. # except that it opens up runners instead of module functions.
  1299. #
  1300. # All peer runner support is turned off by default and must be enabled before
  1301. # using. This will enable all peer runners for all minions:
  1302. #peer_run:
  1303. # .*:
  1304. # - .*
  1305. #
  1306. # To enable just the manage.up runner for the minion foo.example.com:
  1307. #peer_run:
  1308. # foo.example.com:
  1309. # - manage.up
  1310. {% if 'peer_run' in cfg_master %}
  1311. {%- do default_keys.append('peer_run') %}
  1312. peer_run:
  1313. {%- for name, roots in cfg_master['peer_run'].items() %}
  1314. {{ name }}:
  1315. {%- for mod in roots %}
  1316. - {{ mod }}
  1317. {%- endfor %}
  1318. {%- endfor %}
  1319. {%- elif 'peer_run' in cfg_salt %}
  1320. peer_run:
  1321. {%- for name, roots in cfg_salt['peer_run'].items() %}
  1322. {{ name }}:
  1323. {%- for mod in roots %}
  1324. - {{ mod }}
  1325. {%- endfor %}
  1326. {%- endfor %}
  1327. {%- endif %}
  1328. ##### Mine settings #####
  1329. #####################################
  1330. # Restrict mine.get access from minions. By default any minion has a full access
  1331. # to get all mine data from master cache. In acl definion below, only pcre matches
  1332. # are allowed.
  1333. # mine_get:
  1334. # .*:
  1335. # - .*
  1336. #
  1337. # The example below enables minion foo.example.com to get 'network.interfaces' mine
  1338. # data only, minions web* to get all network.* and disk.* mine data and all other
  1339. # minions won't get any mine data.
  1340. {% if 'mine_get' in cfg_master -%}
  1341. {%- do default_keys.append('mine_get') %}
  1342. mine_get:
  1343. {%- for minion, data in cfg_master['mine_get']|dictsort %}
  1344. {{ minion }}:
  1345. {%- for command in data %}
  1346. - {% raw %}'{% endraw %}{{ command }}{% raw %}'{% endraw %}
  1347. {%- endfor -%}
  1348. {%- endfor -%}
  1349. {% elif 'mine_get' in cfg_salt -%}
  1350. mine_get:
  1351. {%- for minion, data in cfg_salt['mine_get']|dictsort %}
  1352. {{ minion }}:
  1353. {%- for command in data %}
  1354. - {% raw %}'{% endraw %}{{ command }}{% raw %}'{% endraw %}
  1355. {%- endfor -%}
  1356. {%- endfor -%}
  1357. {% else -%}
  1358. # mine_get:
  1359. # foo.example.com:
  1360. # - network.interfaces
  1361. # web.*:
  1362. # - network.*
  1363. # - disk.*
  1364. {%- endif %}
  1365. ##### Logging settings #####
  1366. ##########################################
  1367. # The location of the master log file
  1368. # The master log can be sent to a regular file, local path name, or network
  1369. # location. Remote logging works best when configured to use rsyslogd(8) (e.g.:
  1370. # ``file:///dev/log``), with rsyslogd(8) configured for network logging. The URI
  1371. # format is: <file|udp|tcp>://<host|socketpath>:<port-if-required>/<log-facility>
  1372. #log_file: /var/log/salt/master
  1373. #log_file: file:///dev/log
  1374. #log_file: udp://loghost:10514
  1375. {{ get_config('log_file', '/var/log/salt/master') }}
  1376. {{ get_config('key_logfile', '/var/log/salt/key') }}
  1377. # The level of messages to send to the console.
  1378. # One of 'garbage', 'trace', 'debug', info', 'warning', 'error', 'critical'.
  1379. #
  1380. # The following log levels are considered INSECURE and may log sensitive data:
  1381. # ['garbage', 'trace', 'debug']
  1382. #
  1383. {{ get_config('log_level', 'warning') }}
  1384. # The level of messages to send to the log file.
  1385. # One of 'garbage', 'trace', 'debug', info', 'warning', 'error', 'critical'.
  1386. # If using 'log_granular_levels' this must be set to the highest desired level.
  1387. {{ get_config('log_level_logfile', 'warning') }}
  1388. # The date and time format used in log messages. Allowed date/time formating
  1389. # can be seen here: http://docs.python.org/library/time.html#time.strftime
  1390. {{ get_config('log_datefmt', "'%H:%M:%S'") }}
  1391. {{ get_config('log_datefmt_logfile', "'%Y-%m-%d %H:%M:%S'") }}
  1392. # The format of the console logging messages. Allowed formatting options can
  1393. # be seen here: http://docs.python.org/library/logging.html#logrecord-attributes
  1394. #
  1395. # Console log colors are specified by these additional formatters:
  1396. #
  1397. # %(colorlevel)s
  1398. # %(colorname)s
  1399. # %(colorprocess)s
  1400. # %(colormsg)s
  1401. #
  1402. # Since it is desirable to include the surrounding brackets, '[' and ']', in
  1403. # the coloring of the messages, these color formatters also include padding as
  1404. # well. Color LogRecord attributes are only available for console logging.
  1405. #
  1406. {{ get_config('log_fmt_console', "'%(colorlevel)s %(colormsg)s'") }}
  1407. {{ get_config('log_fmt_console', "'[%(levelname)-8s] %(message)s'") }}
  1408. {{ get_config('log_fmt_logfile', "'%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s'") }}
  1409. # This can be used to control logging levels more specificically. This
  1410. # example sets the main salt library at the 'warning' level, but sets
  1411. # 'salt.modules' to log at the 'debug' level:
  1412. # log_granular_levels:
  1413. # 'salt': 'warning'
  1414. # 'salt.modules': 'debug'
  1415. #
  1416. {% if 'log_granular_levels' in cfg_master %}
  1417. {%- do default_keys.append('log_granular_levels') %}
  1418. log_granular_levels:
  1419. {% for name, lvl in cfg_master['log_granular_levels'].items() %}
  1420. {{ name }}: {{ lvl }}
  1421. {% endfor %}
  1422. {% elif 'log_granular_levels' in cfg_salt %}
  1423. log_granular_levels:
  1424. {% for name, lvl in cfg_salt['log_granular_levels'].items() %}
  1425. {{ name }}: {{ lvl }}
  1426. {% endfor %}
  1427. {% else %}
  1428. #log_granular_levels: {}
  1429. {% endif %}
  1430. ##### Node Groups ######
  1431. ##########################################
  1432. # Node groups allow for logical groupings of minion nodes. A group consists of
  1433. # a group name and a compound target. Nodgroups can reference other nodegroups
  1434. # with 'N@' classifier. Ensure that you do not have circular references.
  1435. #
  1436. #nodegroups:
  1437. # group1: 'L@foo.domain.com,bar.domain.com,baz.domain.com or bl*.domain.com'
  1438. # group2: 'G@os:Debian and foo.domain.com'
  1439. # group3: 'G@os:Debian and N@group1'
  1440. # group4:
  1441. # - 'G@foo:bar'
  1442. # - 'or'
  1443. # - 'G@foo:baz'
  1444. {%- if 'nodegroups' in cfg_master %}
  1445. {%- do default_keys.append('nodegroups') %}
  1446. nodegroups:
  1447. {%- for name, lvl in cfg_master['nodegroups'].items() %}
  1448. {{ name }}: {{ lvl }}
  1449. {%- endfor %}
  1450. {%- elif 'nodegroups' in cfg_salt %}
  1451. nodegroups:
  1452. {%- for name, lvl in cfg_salt['nodegroups'].items() %}
  1453. {{ name }}: {{ lvl }}
  1454. {%- endfor %}
  1455. {%- endif %}
  1456. ##### Range Cluster settings #####
  1457. ##########################################
  1458. # The range server (and optional port) that serves your cluster information
  1459. # https://github.com/ytoolshed/range/wiki/%22yamlfile%22-module-file-spec
  1460. #
  1461. {{ get_config('range_server', 'range:80') }}
  1462. ##### Windows Software Repo settings #####
  1463. ###########################################
  1464. # Specify the provider to be used for git_pillar. Must be either pygit2 or
  1465. # gitpython. If unset, then both will be tried in that same order, and the
  1466. # first one with a compatible version installed will be the provider that
  1467. # is used.
  1468. {{ get_config('winrepo_provider', 'pygit2') }}
  1469. # Repo settings for 2015.8+ master used with 2015.8+ Windows minions
  1470. #
  1471. # Location of the repo on the master:
  1472. {{ get_config('winrepo_dir_ng', '/srv/salt/win/repo-ng') }}
  1473. # List of git repositories to include with the local repo:
  1474. {% if 'winrepo_remotes_ng' in cfg_master %}
  1475. {%- do default_keys.append('winrepo_remotes_ng') %}
  1476. winrepo_remotes_ng:
  1477. {% for repo in cfg_master['winrepo_remotes_ng'] %}
  1478. - {{ repo }}
  1479. {% endfor %}
  1480. {% elif 'winrepo_remotes_ng' in cfg_salt %}
  1481. winrepo_remotes_ng:
  1482. {% for repo in cfg_salt['winrepo_remotes_ng'] %}
  1483. - {{ repo }}
  1484. {% endfor %}
  1485. {% else %}
  1486. #winrepo_remotes_ng:
  1487. # - 'https://github.com/saltstack/salt-winrepo-ng.git'
  1488. {% endif %}
  1489. # Repo settings for 2015.8+ master used with pre-2015.8 Windows minions
  1490. #
  1491. # Location of the repo on the master:
  1492. {{ get_config('winrepo_dir', '/srv/salt/win/repo') }}
  1493. # Location of the master's repo cache file:
  1494. {{ get_config('winrepo_cachefile', 'winrepo.p') }}
  1495. # List of git repositories to include with the local repo:
  1496. {% if 'winrepo_remotes' in cfg_master %}
  1497. {%- do default_keys.append('winrepo_remotes') %}
  1498. winrepo_remotes:
  1499. {% for repo in cfg_master['winrepo_remotes'] %}
  1500. - {{ repo }}
  1501. {% endfor %}
  1502. {% elif 'winrepo_remotes' in cfg_salt %}
  1503. winrepo_remotes:
  1504. {% for repo in cfg_salt['winrepo_remotes'] %}
  1505. - {{ repo }}
  1506. {% endfor %}
  1507. {% else %}
  1508. #winrepo_remotes:
  1509. # - 'https://github.com/saltstack/salt-winrepo.git'
  1510. {% endif %}
  1511. ##### Windows Software Repo settings - Pre 2015.8 #####
  1512. ########################################################
  1513. # Legacy repo settings for pre-2015.8 Windows minions.
  1514. #
  1515. # Location of the repo on the master:
  1516. {{ get_config('win_repo', '/srv/salt/win/repo') }}
  1517. # Location of the master's repo cache file:
  1518. {{ get_config('win_repo_mastercachefile', '/srv/salt/win/repo/winrepo.p') }}
  1519. # List of git repositories to include with the local repo:
  1520. {% if 'win_gitrepos' in cfg_master %}
  1521. {%- do default_keys.append('win_gitrepos') %}
  1522. win_gitrepos:
  1523. {% for repo in cfg_master['win_gitrepos'] %}
  1524. - {{ repo }}
  1525. {% endfor %}
  1526. {% elif 'win_gitrepos' in cfg_salt %}
  1527. win_gitrepos:
  1528. {% for repo in cfg_salt['win_gitrepos'] %}
  1529. - {{ repo }}
  1530. {% endfor %}
  1531. {% else %}
  1532. #winrepo_remotes:
  1533. # - 'https://github.com/saltstack/salt-winrepo.git'
  1534. {% endif %}
  1535. ##### Returner settings ######
  1536. ############################################
  1537. # Which returner(s) will be used for minion's result:
  1538. #return: mysql
  1539. {{ get_config('return', '')}}
  1540. ###### Miscellaneous settings ######
  1541. ############################################
  1542. # Default match type for filtering events tags: startswith, endswith, find, regex, fnmatch
  1543. {{ get_config('event_match_type', 'startswith') }}
  1544. # Save runner returns to the job cache
  1545. {{ get_config('runner_returns', 'True') }}
  1546. # Permanently include any available Python 3rd party modules into Salt Thin
  1547. # when they are generated for Salt-SSH or other purposes.
  1548. # The modules should be named by the names they are actually imported inside the Python.
  1549. # The value of the parameters can be either one module or a comma separated list of them.
  1550. {%- if 'thin_extra_mods' in cfg_master %}
  1551. {{ get_config('thin_extra_mods', '') }}
  1552. {%- else %}
  1553. #thin_extra_mods: foo,bar
  1554. {%- endif %}
  1555. {%- if 'halite' in cfg_master %}
  1556. {%- do default_keys.append('halite') %}
  1557. ##### Halite #####
  1558. ##########################################
  1559. halite:
  1560. {%- for name, value in cfg_master['halite'].items() %}
  1561. {{ name }}: {{ value }}
  1562. {%- endfor %}
  1563. {%- endif %}
  1564. {%- if 'rest_cherrypy' in cfg_master %}
  1565. {%- do default_keys.append('rest_cherrypy') %}
  1566. ##### rest_cherrypy #####
  1567. ##########################################
  1568. rest_cherrypy:
  1569. {%- for name, value in cfg_master['rest_cherrypy'].items() %}
  1570. {{ name }}: {{ value }}
  1571. {%- endfor %}
  1572. {%- endif %}
  1573. {%- if 'rest_tornado' in cfg_master %}
  1574. {%- do default_keys.append('rest_tornado') %}
  1575. ##### rest_tornado #####
  1576. ###########################################
  1577. rest_tornado:
  1578. {%- for name, value in cfg_master['rest_tornado'].items() %}
  1579. {{ name }}: {{ value }}
  1580. {%- endfor %}
  1581. {%- endif %}
  1582. {%- if 'presence_events' in cfg_master %}
  1583. ##### presence events #####
  1584. ##########################################
  1585. {{ get_config('presence_events', 'False') }}
  1586. {%- endif %}
  1587. {%- if 'consul_config' in cfg_master %}
  1588. {%- do default_keys.append('consul_config') %}
  1589. ##### consul_config #####
  1590. ##########################################
  1591. consul_config:
  1592. {%- for name, value in cfg_master['consul_config'].items() %}
  1593. {{ name }}: {{ value }}
  1594. {%- endfor %}
  1595. {%- endif %}
  1596. {% if 'mongo' in cfg_master -%}
  1597. {%- do default_keys.append('mongo') %}
  1598. ##### mongodb connection settings #####
  1599. ##########################################
  1600. {%- for name, value in cfg_master['mongo'].items() %}
  1601. mongo.{{ name }}: {{ value }}
  1602. {%- endfor %}
  1603. {% if 'alternative.mongo' in cfg_master -%}
  1604. {%- do default_keys.append('alternative.mongo') %}
  1605. {%- for name, value in cfg_master['alternative.mongo'].items() %}
  1606. alternative.mongo.{{ name }}: {{ value }}
  1607. {%- endfor %}
  1608. {% endif %}
  1609. {%- endif %}
  1610. {%- for configname in cfg_master %}
  1611. {%- if configname not in reserved_keys and configname not in default_keys %}
  1612. {{ configname }}:
  1613. {{ cfg_master[configname]| yaml(False) | indent(2) }}
  1614. {%- endif %}
  1615. {%- endfor %}