mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
influxdb: default hostname to localhost (#34117)
This commit is contained in:
@@ -40,7 +40,7 @@ class InfluxDb():
|
||||
@staticmethod
|
||||
def influxdb_argument_spec():
|
||||
return dict(
|
||||
hostname=dict(required=True, type='str'),
|
||||
hostname=dict(default='localhost', type='str'),
|
||||
port=dict(default=8086, type='int'),
|
||||
username=dict(default='root', type='str'),
|
||||
password=dict(default='root', type='str', no_log=True),
|
||||
|
||||
Reference in New Issue
Block a user