fix: remove default value for mariadb_password

This commit is contained in:
Adrien Waksberg 2020-03-28 11:16:19 +01:00
parent ab8cdfa15c
commit 025bd8e278
4 changed files with 3 additions and 2 deletions

View file

@ -7,6 +7,7 @@ Which is based on [Keep A Changelog](http://keepachangelog.com/)
### Changed ### Changed
- feat: remove default value for mariadb_password
- test: replace kitchen to molecule - test: replace kitchen to molecule
## [v2.0.0] - 2019-06-05 ## [v2.0.0] - 2019-06-05

View file

@ -18,7 +18,7 @@ Install and configure MariaDB
| mariadb_use_official_repository | bool | no | true | use the official repository | | mariadb_use_official_repository | bool | no | true | use the official repository |
| mariadb_branch | str | no | 10.3 | the branch version to install | | mariadb_branch | str | no | 10.3 | the branch version to install |
| mariadb_user | str | no | root | login to connect on mariadb | | mariadb_user | str | no | root | login to connect on mariadb |
| mariadb_password | str | no | secret | password to connect on mariadb | | mariadb_password | str | yes | | password to connect on mariadb |
| mariadb_master | bool | no | false | the server is master | | mariadb_master | bool | no | false | the server is master |
| mariadb_autorestart | bool | no | false | restart mariadb when the config change | | mariadb_autorestart | bool | no | false | restart mariadb when the config change |
| mariadb_users | array | no | | the users to manage | | mariadb_users | array | no | | the users to manage |

View file

@ -6,7 +6,6 @@ mariadb_repository: |
mariadb_repository_key_id: '0xF1656F24C74CD1D8' mariadb_repository_key_id: '0xF1656F24C74CD1D8'
mariadb_repository_key_server: keyserver.ubuntu.com mariadb_repository_key_server: keyserver.ubuntu.com
mariadb_user: root mariadb_user: root
mariadb_password: secret
mariadb_master: no mariadb_master: no
mariadb_autorestart: no mariadb_autorestart: no
mariadb_users: [] mariadb_users: []

View file

@ -2,6 +2,7 @@
- name: Converge - name: Converge
hosts: all hosts: all
vars: vars:
mariadb_password: secret
mariadb_autorestart: yes mariadb_autorestart: yes
mariadb_master: yes mariadb_master: yes
mariadb_config: mariadb_config: