mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
docker swarm - Add no_log to the signing_ca_key argument (#1728)
This will prevent accidental disclosure. See: CVE-2021-20191
This commit is contained in:
committed by
GitHub
parent
b7368b9802
commit
9cccc9f0cd
2
changelogs/fragments/CVE-2021-20191_no_log_docker.yml
Normal file
2
changelogs/fragments/CVE-2021-20191_no_log_docker.yml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
security_fixes:
|
||||||
|
- docker_swarm - enabled ``no_log`` for the option ``signing_ca_key`` to prevent accidental disclosure (CVE-2021-20191, https://github.com/ansible-collections/community.general/pull/1728).
|
||||||
@@ -616,7 +616,7 @@ def main():
|
|||||||
name=dict(type='str'),
|
name=dict(type='str'),
|
||||||
labels=dict(type='dict'),
|
labels=dict(type='dict'),
|
||||||
signing_ca_cert=dict(type='str'),
|
signing_ca_cert=dict(type='str'),
|
||||||
signing_ca_key=dict(type='str'),
|
signing_ca_key=dict(type='str', no_log=True),
|
||||||
ca_force_rotate=dict(type='int'),
|
ca_force_rotate=dict(type='int'),
|
||||||
autolock_managers=dict(type='bool'),
|
autolock_managers=dict(type='bool'),
|
||||||
node_id=dict(type='str'),
|
node_id=dict(type='str'),
|
||||||
|
|||||||
Reference in New Issue
Block a user