Skip to content

Commit

Permalink
More no_log=False to fix sanity tests (ansible-collections#474)
Browse files Browse the repository at this point in the history
* Add no_log=False to mark some more false-positives of the no_log check.

* More false-positives confirmed by tremble.

This commit was initially merged in https://github.com/ansible-collections/community.aws
See: ansible-collections/community.aws@67b6d75
  • Loading branch information
felixfontein authored and alinabuzachis committed Sep 16, 2022
1 parent 7ba5399 commit 7d4d006
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/modules/lambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ def main():
handler=dict(),
zip_file=dict(aliases=['src']),
s3_bucket=dict(),
s3_key=dict(),
s3_key=dict(no_log=False),
s3_object_version=dict(),
description=dict(default=''),
timeout=dict(type='int', default=3),
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/lambda_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ def setup_module_object():
principal=dict(required=True, ),
source_arn=dict(),
source_account=dict(),
event_source_token=dict(),
event_source_token=dict(no_log=False),
)

return AnsibleAWSModule(
Expand Down

0 comments on commit 7d4d006

Please sign in to comment.