mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 11:10:21 -07:00
Mark api_key as no_log to avoid potential leaks (#2048)
This commit is contained in:
parent
b5033fb597
commit
07f8846134
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ def main():
|
||||||
title=dict(required=True),
|
title=dict(required=True),
|
||||||
description=dict(required=True),
|
description=dict(required=True),
|
||||||
duration=dict(required=False, type='int'),
|
duration=dict(required=False, type='int'),
|
||||||
api_key=dict(required=True)
|
api_key=dict(required=True, no_log=True)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
annotation = create_annotation(module)
|
annotation = create_annotation(module)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue