New in version 2.8.
The below requirements are needed on the host that executes this module.
Parameter | Choices/Defaults | Comments |
---|---|---|
login_database - | Default: "admin" | The database where login credentials are stored. |
login_host - | Default: "localhost" | The host to login to. This must be a mongos. |
login_password - | The password used to authenticate with. | |
login_port - | Default: 27017 | The port to login to. |
login_user - | The user to login with. | |
shard - / required | Default: null | The shard connection string. Should be supplied in the form <replicaset>/host:port as detailed in https://docs.mongodb.com/manual/tutorial/add-shards-to-shard-cluster/. For example rs0/example1.mongodb.com:27017. |
ssl boolean |
| Whether to use an SSL connection when connecting to the database. |
ssl_cert_reqs - |
| Specifies whether a certificate is required from the other side of the connection, and whether it will be validated if provided. |
state - |
| Whether the shard should be present or absent from the Cluster. |
Note
# add a replicaset shard named rs1 with a member running on port 27018 on mongodb0.example.net - mongodb_shard: login_user: admin login_password: admin shard: "rs1/mongodb0.example.net:27018" state: present # add a standalone mongod shard running on port 27018 of mongodb0.example.net - mongodb_shard: login_user: admin login_password: admin shard: "mongodb0.example.net:27018" state: present # To remove a shard called 'rs1' - mongodb_shard: login_user: admin login_password: admin shard: rs1 state: absent # Single node shard running on localhost - name: Ensure shard rs0 exists mongodb_shard: login_user: admin login_password: secret shard: "rs0/localhost:3001" state: present # Single node shard running on localhost - name: Ensure shard rs1 exists mongodb_shard: login_user: admin login_password: secret shard: "rs1/localhost:3002" state: present
Common return values are documented here, the following are the fields unique to this module:
Key | Returned | Description |
---|---|---|
mongodb_shard string | success | The name of the shard to create. |
Hint
If you notice any issues in this documentation, you can edit this document to improve it.
© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.9/modules/mongodb_shard_module.html