2020-12-04 13:08:14 +00:00
|
|
|
---
|
2022-07-21 05:27:26 +00:00
|
|
|
# Copyright (c) Ansible Project
|
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2020-12-04 13:08:14 +00:00
|
|
|
default_rsa_key_size: 1024
|
2021-01-22 20:39:53 +00:00
|
|
|
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
|
|
|
|
}}
|