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 23, 2021
1 parent 3321d38 commit e5761d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/ec2_vpc_nat_gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,7 @@ def main():
wait_timeout=dict(type='int', default=320, required=False),
release_eip=dict(type='bool', default=False),
nat_gateway_id=dict(type='str'),
client_token=dict(type='str'),
client_token=dict(type='str', no_log=False),
tags=dict(required=False, type='dict', aliases=['resource_tags']),
purge_tags=dict(default=True, type='bool'),
)
Expand Down

0 comments on commit e5761d0

Please sign in to comment.