Skip to content

Commit

Permalink
lint: fix no-log for prov token
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosmmatos committed Aug 8, 2024
1 parent 12b90d5 commit 2ac6bf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/falconctl.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ def main(): # pylint: disable=missing-function-docstring
module_args = dict(
state=dict(required=True, choices=["absent", "present"], type="str"),
cid=dict(required=False, type="str"),
provisioning_token=dict(required=False, type="str"),
provisioning_token=dict(required=False, no_log=False, type="str"),
aid=dict(required=False, type="bool"),
apd=dict(required=False, type="str"),
aph=dict(required=False, type="str"),
Expand Down

0 comments on commit 2ac6bf8

Please sign in to comment.