mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-05-07 13:53:06 +00:00
10 lines
307 B
YAML
10 lines
307 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)
|
|
else 1024
|
|
}}
|