ansible-mysql/tasks/secure.yml

22 lines
507 B
YAML
Raw Normal View History

2015-07-12 15:42:46 +07:00
---
- name: MYSQL_USER | Update mysql root password for all root accounts
2018-03-17 23:28:54 +07:00
mysql_user: name=root host={{ item }} password={{ mariadb_root_password }}
2015-07-12 15:42:46 +07:00
with_items:
- "{{ ansible_hostname }}"
- 127.0.0.1
- ::1
- localhost
- name: MYSQL_USER | Remove all anonymous users
mysql_user: name='' host={{ item }} state=absent
with_items:
- "{{ ansible_hostname }}"
- 127.0.0.1
- ::1
- localhost
- name: MYSQL_DB | Remove the test database
mysql_db: name=test state=absent