mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
697 B
19 lines
697 B
- hosts: mongodb
|
|
gather_facts: no
|
|
vars:
|
|
ansible_python_interpreter: /usr/local/bin/python
|
|
|
|
tasks:
|
|
- name: Test MongoDB connection
|
|
mongodb_ping:
|
|
login_user: "{{ jms_account.username }}"
|
|
login_password: "{{ jms_account.secret }}"
|
|
login_host: "{{ jms_asset.address }}"
|
|
login_port: "{{ jms_asset.port }}"
|
|
login_database: "{{ jms_asset.spec_info.db_name }}"
|
|
ssl: "{{ jms_asset.spec_info.use_ssl }}"
|
|
ssl_ca_certs: "{{ jms_asset.secret_info.ca_cert }}"
|
|
ssl_certfile: "{{ jms_asset.secret_info.client_key }}"
|
|
connection_options:
|
|
- tlsAllowInvalidHostnames: "{{ jms_asset.spec_info.allow_invalid_cert}}"
|