mirror of
https://github.com/saltstack-formulas/mysql-formula.git
synced 2025-04-17 10:10:30 +00:00
12 lines
349 B
Text
12 lines
349 B
Text
{% from "mysql/map.jinja" import mysql with context %}
|
|
|
|
{% for database in salt['pillar.get']('mysql:database', []) %}
|
|
{{ database }}:
|
|
mysql_database.present:
|
|
- host: localhost
|
|
- connection_user: root
|
|
- connection_pass: '{{ salt['pillar.get']('mysql:server:root_password', 'somepass') }}'
|
|
- connection_charset: utf8
|
|
{% endfor %}
|
|
|
|
|