Merge pull request #68 from davidcaste/no-passwords-in-stdout

Do not show passwords in Ansible output
This commit is contained in:
Sergei Antipov 2016-09-22 11:07:29 +07:00 committed by GitHub
commit a830a58291
2 changed files with 6 additions and 0 deletions

View File

@ -33,6 +33,7 @@
password: "{{ mongodb_user_admin_password }}",
roles: "userAdminAnyDatabase"
}
no_log: true
- name: create administrative user siteRootAdmin
mongodb_user:
@ -48,6 +49,7 @@
password: "{{ mongodb_root_admin_password }}",
roles: "root"
}
no_log: true
- name: create backup user "backupuser"
mongodb_user:
@ -63,6 +65,7 @@
password: "{{ mongodb_root_backup_password }}",
roles: "backup,clusterMonitor"
}
no_log: true
- name: Move back mongod.conf
template: src=mongod.conf.j2 dest=/etc/mongod.conf owner=root group=root mode=0644

View File

@ -33,6 +33,7 @@
when: ( mongodb_security_authorization == 'enabled'
and (not mongodb_replication_replset
or mongodb_replication_replset == '') )
no_log: true
tags: [mongodb]
- name: Include authorization configuration
@ -60,6 +61,7 @@
and mongodb_replication_replset != ''
and mongodb_security_authorization == 'enabled'
and mongodb_master is defined and mongodb_master )
no_log: true
tags: [mongodb]
- name: create normal users without replicaset
@ -77,6 +79,7 @@
when: ( mongodb_security_authorization == 'enabled'
and (not mongodb_replication_replset
or mongodb_replication_replset == '') )
no_log: true
tags: [mongodb]
- name: Include MMS Agent configuration