The below requirements are needed on the host that executes this module.
| Parameter | Choices/Defaults | Comments |
|---|---|---|
| database_name string / required | Name of the database. | |
| hostname string | Default: "localhost" | The hostname or IP address on which InfluxDB server is listening. Since Ansible 2.5, defaulted to localhost. |
| password string | Default: "root" | Password that will be used to authenticate against InfluxDB server. Alias login_password added in Ansible 2.5.aliases: login_password |
| port integer | Default: 8086 | The port on which InfluxDB server is listening |
| proxies dictionary added in 2.5 | HTTP(S) proxy to use for Requests to connect to InfluxDB server. | |
| retries integer added in 2.5 | Default: 3 | Number of retries client will try before aborting. 0 indicates try until success. |
| ssl boolean added in 2.5 |
| Use https instead of http to connect to InfluxDB server. |
| state string |
| Determines if the database should be created or destroyed. |
| timeout integer added in 2.5 | Number of seconds Requests will wait for client to establish a connection. | |
| udp_port integer added in 2.5 | Default: 4444 | UDP port to connect to InfluxDB server. |
| use_udp boolean added in 2.5 |
| Use UDP to connect to InfluxDB server. |
| username string | Default: "root" | Username that will be used to authenticate against InfluxDB server. Alias login_username added in Ansible 2.5.aliases: login_username |
| validate_certs boolean added in 2.5 |
| If set to no, the SSL certificates will not be validated.This should only set to no used on personally controlled sites using self-signed certificates. |
# Example influxdb_database command from Ansible Playbooks
- name: Create database
influxdb_database:
hostname: "{{influxdb_ip_address}}"
database_name: "{{influxdb_database_name}}"
- name: Destroy database
influxdb_database:
hostname: "{{influxdb_ip_address}}"
database_name: "{{influxdb_database_name}}"
state: absent
- name: Create database using custom credentials
influxdb_database:
hostname: "{{influxdb_ip_address}}"
username: "{{influxdb_username}}"
password: "{{influxdb_password}}"
database_name: "{{influxdb_database_name}}"
ssl: yes
validate_certs: yes
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/influxdb_database_module.html