Create/Delete RethinkDB Database.
Version added: 0.2.0
- Create/Delete RethinkDB Database.
- https://rethinkdb.com/api/python/
The below requirements are needed on the host that executes this module.
- rethinkdb
- name: create database in rethinkdb
community.missing_collection.rethinkdb_db:
host: "localhost"
port: 28015
user: 'admin'
password: ''
state: present
database: "test1"
- name: delete database in rethinkdb
community.missing_collection.rethinkdb_db:
host: "localhost"
port: 28015
user: 'admin'
password: ''
state: absent
database: "test1"
Common return values are documented here, the following are the fields unique to this module:
- Davinder Pal (@116davinder) <dpsangwal@gmail.com>