Skip to content

Commit

Permalink
Merge pull request #303 from felixfontein/secrets
Browse files Browse the repository at this point in the history
more no_log=False to fix sanity tests (fixes CI)
  • Loading branch information
felixfontein authored Mar 13, 2021
2 parents 359366a + 16abb8e commit 3602af0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/module_utils/ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def aws_common_argument_spec():
return dict(
debug_botocore_endpoint_logs=dict(fallback=(env_fallback, ['ANSIBLE_DEBUG_BOTOCORE_LOGS']), default=False, type='bool'),
ec2_url=dict(aliases=['aws_endpoint_url', 'endpoint_url']),
aws_access_key=dict(aliases=['ec2_access_key', 'access_key']),
aws_access_key=dict(aliases=['ec2_access_key', 'access_key'], no_log=False),
aws_secret_key=dict(aliases=['ec2_secret_key', 'secret_key'], no_log=True),
security_token=dict(aliases=['access_token', 'aws_security_token'], no_log=True),
validate_certs=dict(default=True, type='bool'),
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/aws_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ def main():
expiry=dict(default=600, type='int', aliases=['expiration']),
headers=dict(type='dict'),
marker=dict(default=""),
max_keys=dict(default=1000, type='int'),
max_keys=dict(default=1000, type='int', no_log=False),
metadata=dict(type='dict'),
mode=dict(choices=['get', 'put', 'delete', 'create', 'geturl', 'getstr', 'delobj', 'list'], required=True),
object=dict(),
Expand Down

0 comments on commit 3602af0

Please sign in to comment.