Skip to content

Commit da9b26a

Browse files
authored
Fix #925: Conditions setup fix (#926)
1 parent 20c9dcd commit da9b26a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/modules/netbox_webhook.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
description:
9797
- A set of conditions which determine whether the webhook will be generated.
9898
required: false
99-
type: str
99+
type: dict
100100
ssl_verification:
101101
description:
102102
- Enable ssl verification.
@@ -199,7 +199,7 @@ def main():
199199
additional_headers=dict(required=False, type="str"),
200200
body_template=dict(required=False, type="str"),
201201
secret=dict(required=False, type="str", no_log=False),
202-
conditions=dict(required=False, type="str"),
202+
conditions=dict(required=False, type="dict"),
203203
ssl_verification=dict(required=False, type="bool"),
204204
ca_file_path=dict(required=False, type="str"),
205205
),

0 commit comments

Comments
 (0)