You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
361 B
YAML
19 lines
361 B
YAML
---
|
|
|
|
mysql_databases: [
|
|
{
|
|
name: "{{ connect_wordpress_maria_database_name }}",
|
|
collation: "utf8_general_ci",
|
|
encoding: "utf8",
|
|
}
|
|
]
|
|
|
|
mysql_users: [
|
|
{
|
|
name: "{{ connect_wordpress_maria_username }}",
|
|
host: "%",
|
|
password: "{{ connect_wordpress_maria_password }}",
|
|
priv: "{{ connect_wordpress_maria_database_name }}.*:ALL",
|
|
}
|
|
]
|
|
|