ansible-role-mongodb/tasks/main.yml

94 lines
3.1 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:
- "{{ ansible_distribution }}.yml"
- "{{ ansible_os_family }}.yml"
2016-04-17 13:43:00 +00:00
- name: Include installation on Debian-based OS
2018-02-20 18:23:43 +00:00
include: "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
2016-04-17 13:43:00 +00:00
when: ( mongodb_replication_replset
and mongodb_replication_replset != ''
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
2016-04-17 13:43:00 +00:00
when: mongodb_replication_replset and mongodb_replication_replset != ''
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'
and (not mongodb_replication_replset
or 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'
and (not mongodb_replication_replset
or mongodb_replication_replset == '')
and mongodb_user_admin_check.rc != 0 )
tags: [mongodb]
2016-04-17 17:18:31 +00:00
- name: create normal users with replicaset
2018-02-20 18:23:43 +00:00
mongodb_user_fixed:
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_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
2018-02-20 18:23:43 +00:00
mongodb_user_fixed:
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'
and (not mongodb_replication_replset
or 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: Include MMS Agent configuration
2018-02-20 18:23:43 +00:00
include: mms-agent.yml
2015-02-17 09:01:36 +00:00
when: mongodb_mms_api_key != ""
tags: [mongodb]