Skip to content

Commit

Permalink
Merge pull request #128 from litewhatever/master
Browse files Browse the repository at this point in the history
Oplog user creation
  • Loading branch information
UnderGreen authored Mar 10, 2019
2 parents 72c6654 + e5b7982 commit 6745bcc
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,14 @@ mongodb_users:
database: app_development
}
```
Example vars for oplog user:
```yaml
mongodb_oplog_users:
- {
user: oplog,
password: passw0rd
}
```
Required vars to change on production:
```yaml
mongodb_user_admin_password
Expand Down
22 changes: 22 additions & 0 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,28 @@
no_log: true
tags: [mongodb]

- name: create oplog user with replicaset
mongodb_user_fixed:
database: admin
user: "{{ item.user }}"
password: "{{ item.password }}"
update_password: "{{ mongodb_user_update_password }}"
roles:
- db: local
role: read
login_user: "{{ mongodb_user_admin_name }}"
login_password: "{{ mongodb_user_admin_password }}"
login_port: "{{ mongodb_login_port|default(27017) }}"
login_host: "{{ mongodb_login_host|default('localhost') }}"
with_items:
- "{{ mongodb_oplog_users | default([]) }}"
when: ( mongodb_replication_replset
and mongodb_replication_replset != ''
and mongodb_security_authorization == 'enabled'
and mongodb_master is defined and mongodb_master )
no_log: false
tags: [mongodb]

- name: Include MMS Agent configuration
include: mms-agent.yml
when: mongodb_mms_api_key != ""
Expand Down

0 comments on commit 6745bcc

Please sign in to comment.