mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-05-06 21:33:00 +00:00
* Handle unexpected error. * Increase certificate key size on Darwin. * Add changelog fragment.
11 lines
407 B
YAML
11 lines
407 B
YAML
---
|
|
default_rsa_key_size: 1024
|
|
default_rsa_key_size_certifiates: >-
|
|
{{
|
|
2048 if
|
|
(ansible_os_family == "RedHat" and ansible_facts.distribution_major_version | int >= 8) or
|
|
(ansible_distribution == "Ubuntu" and ansible_facts.distribution_major_version | int >= 20) or
|
|
(ansible_os_family == "Darwin" and ansible_facts.distribution_major_version | int >= 12)
|
|
else 1024
|
|
}}
|