Skip to content
Snippets Groups Projects
Commit f254b2a1 authored by Robin Sonnabend's avatar Robin Sonnabend
Browse files

Don't use root passwort to create mysql db and user

parent caf279e4
Branches
No related tags found
1 merge request!26Don't use root passwort to create mysql db and user
Pipeline #3258 passed
......@@ -16,8 +16,6 @@
mysql_db:
name: "{{ app_db_name }}"
state: present
login_user: root
login_password: "{{ app_db_root_password }}"
no_log: true
tags:
- uwsgi-python
......@@ -28,8 +26,6 @@
name: "{{ app_user }}"
password: "{{ app_db_password }}"
state: present
login_user: root
login_password: "{{ app_db_root_password }}"
priv: "{{ app_db_name }}.*:ALL"
no_log: true
tags:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment