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

(cherry picked from commit 3f19ef680a)
This commit is contained in:
John R Barker 2018-02-28 14:43:27 +00:00 committed by GitHub
parent 3257fe28f3
commit 8040168c4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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'),