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