Skip to content

Commit

Permalink
Fix wrong parameter type in influxdb2writer #99 (#100)
Browse files Browse the repository at this point in the history
Fix type of host_template and service_template
  • Loading branch information
afeefghannam89 authored Aug 16, 2022
1 parent 35bc4a8 commit 78f666a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/modules/icinga2_influxdb2writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ def main():
ssl_ca_cert = dict(type='str'),
ssl_cert = dict(type='str'),
ssl_key = dict(type='str'),
host_template = dict(type='str'),
service_template = dict(type='str'),
host_template = dict(type='dict'),
service_template = dict(type='dict'),
enable_send_thresholds = dict(type='bool'),
enable_send_metadata = dict(type='bool'),
flush_interval = dict(type='str'),
Expand Down

0 comments on commit 78f666a

Please sign in to comment.