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:
parent
60e39b9718
commit
3f19ef680a
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