1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

aws_ssm_parameter_store module - value parameter should be no_log since it's often a secret (#36843)

This commit is contained in:
mikedlr 2018-02-28 14:40:58 +00:00 committed by John R Barker
parent 60e39b9718
commit 3f19ef680a

View file

@ -169,7 +169,7 @@ def setup_module_object():
argument_spec = dict(
name=dict(required=True),
description=dict(),
value=dict(required=False),
value=dict(required=False, no_log=True),
state=dict(default='present', choices=['present', 'absent']),
string_type=dict(default='String', choices=['String', 'StringList', 'SecureString']),
decryption=dict(default=True, type='bool'),