community.general.influxdb_database – Manage InfluxDB databases
Note
This plugin is part of the community.general collection (version 3.8.3).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install community.general
.
To use it in a playbook, specify: community.general.influxdb_database
.
Requirements
The below requirements are needed on the host that executes this module.
python >= 2.6
influxdb >= 0.9
requests
Parameters
Parameter |
Comments |
---|---|
Name of the database. |
|
The hostname or IP address on which InfluxDB server is listening. Since Ansible 2.5, defaulted to localhost. Default: “localhost” |
|
Password that will be used to authenticate against InfluxDB server. Alias Default: “root” |
|
The path on which InfluxDB server is accessible Only available when using python-influxdb >= 5.1.0 |
|
The port on which InfluxDB server is listening Default: 8086 |
|
HTTP(S) proxy to use for Requests to connect to InfluxDB server. |
|
Number of retries client will try before aborting.
Only available when using python-influxdb >= 4.1.0 Default: 3 |
|
Use https instead of http to connect to InfluxDB server. Choices:
|
|
Determines if the database should be created or destroyed. Choices:
|
|
Number of seconds Requests will wait for client to establish a connection. |
|
UDP port to connect to InfluxDB server. Default: 4444 |
|
Use UDP to connect to InfluxDB server. Choices:
|
|
Username that will be used to authenticate against InfluxDB server. Alias Default: “root” |
|
If set to This should only set to Choices:
|
Examples
# Example influxdb_database command from Ansible Playbooks
- name: Create database
community.general.influxdb_database:
hostname: "{{influxdb_ip_address}}"
database_name: "{{influxdb_database_name}}"
- name: Destroy database
community.general.influxdb_database:
hostname: "{{influxdb_ip_address}}"
database_name: "{{influxdb_database_name}}"
state: absent
- name: Create database using custom credentials
community.general.influxdb_database:
hostname: "{{influxdb_ip_address}}"
username: "{{influxdb_username}}"
password: "{{influxdb_password}}"
database_name: "{{influxdb_database_name}}"
ssl: yes
validate_certs: yes
Authors
Kamil Szczygiel (@kamsz)