mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
data should be redacted in docker_secret (#31366)
This commit is contained in:
parent
b79d15e67f
commit
e859d0da9c
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ def main():
|
|||
argument_spec = dict(
|
||||
name=dict(type='str', required=True),
|
||||
state=dict(type='str', choices=['absent', 'present'], default='present'),
|
||||
data=dict(type='str'),
|
||||
data=dict(type='str', no_log=True),
|
||||
labels=dict(type='dict'),
|
||||
force=dict(type='bool', default=False)
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue