mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 22:00:22 -07:00
influxdb: add login aliases (#34599)
influxdb_user module has user_name, user_password which may confuse with existing login arg username and password. Added aliases prefixed ith login_ to help distinguish.
This commit is contained in:
parent
719feef2e0
commit
386c6b4051
3 changed files with 53 additions and 68 deletions
|
@ -9,17 +9,21 @@ class ModuleDocFragment(object):
|
|||
options:
|
||||
hostname:
|
||||
description:
|
||||
- The hostname or IP address on which InfluxDB server is listening
|
||||
- The hostname or IP address on which InfluxDB server is listening.
|
||||
- Since version 2.5, defaulted to localhost.
|
||||
default: localhost
|
||||
username:
|
||||
description:
|
||||
- Username that will be used to authenticate against InfluxDB server
|
||||
- Username that will be used to authenticate against InfluxDB server.
|
||||
- Alias C(login_username) added in version 2.5.
|
||||
default: root
|
||||
aliases: [ login_username ]
|
||||
password:
|
||||
description:
|
||||
- Password that will be used to authenticate against InfluxDB server
|
||||
- Password that will be used to authenticate against InfluxDB server.
|
||||
- Alias C(login_password) added in version 2.5.
|
||||
default: root
|
||||
aliases: [ login_password ]
|
||||
port:
|
||||
description:
|
||||
- The port on which InfluxDB server is listening
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue