ansible/examples/playbooks/mysql.yml

19 lines
407 B
YAML
Raw Normal View History

2012-07-12 01:00:55 +02:00
##
# Example Ansible playbook that uses the MySQL module.
#
---
- hosts: all
user: root
tasks:
- name: Create database user
action: mysql_user user=bob password=12345 priv=*.*:ALL state=present
2012-07-12 01:00:55 +02:00
- name: Create database
action: mysql_db db=bobdata state=present
2012-07-12 01:00:55 +02:00
- name: Ensure no user named 'sally' exists and delete if found.
action: mysql_user user=sally state=absent