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:
parent
3257fe28f3
commit
8040168c4f
1 changed files with 1 additions and 1 deletions
|
@ -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'),
|
||||
|
|
Loading…
Reference in a new issue