ansible-role-mongodb/tasks/main.yml

114 lines
3.7 KiB
YAML
Raw Normal View History

2014-06-04 15:03:58 +00:00
---
- name: Include OS-specific variables
include_vars: "{{ item }}"
with_first_found:
2018-02-22 17:43:04 +00:00
- "{{ ansible_distribution_release }}.yml"
- "{{ ansible_distribution }}.yml"
- "{{ ansible_os_family }}.yml"
2018-02-22 17:43:04 +00:00
- name: Include installation tasks
include: "{{ item }}"
with_first_found:
- "install.{{ ansible_distribution | lower }}.yml"
- "install.{{ ansible_os_family | lower }}.yml"
tags: [mongodb]
2015-02-17 09:01:36 +00:00
2016-04-17 13:43:00 +00:00
- name: Include configuration.yml
2018-02-20 18:23:43 +00:00
include: configure.yml
tags: [mongodb]
2015-02-17 09:01:36 +00:00
2016-04-17 13:43:00 +00:00
- name: Include replication and auth configuration
2018-02-20 18:23:43 +00:00
include: replication_init_auth.yml
2019-05-26 02:52:10 +00:00
when: ( mongodb_replication_replset | length > 0
2016-04-17 13:43:00 +00:00
and mongodb_security_authorization == 'enabled'
and mongodb_master is defined and mongodb_master )
tags: [mongodb]
2016-04-17 13:43:00 +00:00
- name: Include replication configuration
2018-02-20 18:23:43 +00:00
include: replication.yml
2019-05-26 02:52:10 +00:00
when: mongodb_replication_replset | lenght > 0
tags: [mongodb]
- name: Check where admin user already exists
2016-04-17 13:43:00 +00:00
command: >
mongo --quiet -u {{ mongodb_user_admin_name }} \
-p {{ mongodb_user_admin_password }} --port {{ mongodb_net_port }} --eval 'db.version()' admin
2016-04-17 13:43:00 +00:00
register: mongodb_user_admin_check
changed_when: false
2018-02-15 06:14:31 +00:00
check_mode: no
2016-04-17 13:43:00 +00:00
ignore_errors: true
when: ( mongodb_security_authorization == 'enabled'
2019-05-21 19:42:02 +00:00
and not mongodb_replication_replset )
no_log: true
tags: [mongodb]
2016-04-17 13:43:00 +00:00
- name: Include authorization configuration
2018-02-20 18:23:43 +00:00
include: auth_initialization.yml
2016-04-17 13:43:00 +00:00
when: ( mongodb_security_authorization == 'enabled'
2019-05-21 19:42:02 +00:00
and not mongodb_replication_replset
2016-04-17 13:43:00 +00:00
and mongodb_user_admin_check.rc != 0 )
tags: [mongodb]
2016-04-17 17:18:31 +00:00
- name: create normal users with replicaset
2019-05-23 04:37:39 +00:00
mongodb_user:
2016-04-17 13:43:00 +00:00
database: "{{ item.database }}"
name: "{{ item.name }}"
password: "{{ item.password }}"
update_password: "{{ mongodb_user_update_password }}"
roles: "{{ item.roles }}"
login_user: "{{ mongodb_user_admin_name }}"
login_password: "{{ mongodb_user_admin_password }}"
2016-04-17 17:18:31 +00:00
login_port: "{{ mongodb_login_port|default(27017) }}"
login_host: "{{ mongodb_login_host|default('localhost') }}"
2016-04-17 13:43:00 +00:00
with_items:
- "{{ mongodb_users | default([]) }}"
2016-04-17 17:18:31 +00:00
when: ( mongodb_replication_replset
and mongodb_security_authorization == 'enabled'
and mongodb_master is defined and mongodb_master )
no_log: true
2016-04-17 13:43:00 +00:00
tags: [mongodb]
2016-04-17 17:18:31 +00:00
- name: create normal users without replicaset
2019-05-23 04:37:39 +00:00
mongodb_user:
2016-04-17 17:18:31 +00:00
database: "{{ item.database }}"
name: "{{ item.name }}"
password: "{{ item.password }}"
update_password: "{{ mongodb_user_update_password }}"
roles: "{{ item.roles }}"
login_user: "{{ mongodb_user_admin_name }}"
login_password: "{{ mongodb_user_admin_password }}"
login_port: "{{ mongodb_net_port }}"
with_items:
- "{{ mongodb_users | default([]) }}"
when: ( mongodb_security_authorization == 'enabled'
2019-05-21 19:42:02 +00:00
and not mongodb_replication_replset )
no_log: true
2016-04-17 17:18:31 +00:00
tags: [mongodb]
2016-04-17 13:43:00 +00:00
- name: create oplog user with replicaset
2019-05-23 04:37:39 +00:00
mongodb_user:
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([]) }}"
2019-05-26 02:52:10 +00:00
when: ( mongodb_replication_replset | lenght > 0
and mongodb_security_authorization == 'enabled'
and mongodb_master is defined and mongodb_master )
no_log: false
tags: [mongodb]
2016-04-17 13:43:00 +00:00
- name: Include MMS Agent configuration
2018-02-20 18:23:43 +00:00
include: mms-agent.yml
2019-05-26 02:52:10 +00:00
when: mongodb_mms_api_key | lenght > 0
tags: [mongodb]