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 Aug 3, 2021
1 parent d5e90c8 commit 6d003dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/ec2_vpc_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ def main():
wait_timeout=dict(type='int', default=320, required=False),
route_table_ids=dict(type='list', elements='str'),
vpc_endpoint_id=dict(),
client_token=dict(),
client_token=dict(no_log=False),
)
module = AnsibleAWSModule(
argument_spec=argument_spec,
Expand Down

0 comments on commit 6d003dd

Please sign in to comment.