moved var-combining to separate file

This commit is contained in:
AnsibleGuy 2023-05-13 16:25:55 +02:00
parent 75493340f5
commit 59b33e4b52
No known key found for this signature in database
GPG Key ID: 52984C069F5AD3CD
2 changed files with 9 additions and 8 deletions

View File

@ -85,14 +85,6 @@ defaults_certs:
locality:
email:
CERT_CONFIG: "{{ defaults_certs | combine(certs, recursive=true) }}"
default_le_certbot_cert:
domains: []
key_size: "{{ CERT_CONFIG.letsencrypt.key_size | default(CERT_CONFIG.cert.key_size, true) }}"
state: "{{ CERT_CONFIG.letsencrypt.state | default('present', true) }}"
email: "{{ CERT_CONFIG.letsencrypt.email }}"
# letsencrypt example:
# certs:
# example1:

View File

@ -0,0 +1,9 @@
---
CERT_CONFIG: "{{ defaults_certs | combine(certs, recursive=true) }}"
default_le_certbot_cert:
domains: []
key_size: "{{ CERT_CONFIG.letsencrypt.key_size | default(CERT_CONFIG.cert.key_size, true) }}"
state: "{{ CERT_CONFIG.letsencrypt.state | default('present', true) }}"
email: "{{ CERT_CONFIG.letsencrypt.email }}"