fix for email-validation
This commit is contained in:
parent
0771c7a61a
commit
8a70d66bfa
|
|
@ -6,7 +6,7 @@
|
|||
ansible.builtin.assert:
|
||||
that:
|
||||
- config_ca.ca.key_size in CERT_HC.options.key_size.ca
|
||||
- config_ca.ca.email is none or config_ca.ca.email | validate_email
|
||||
- config_ca.ca.email | default(none, true) or config_ca.ca.email | validate_email
|
||||
|
||||
- name: Certificates | Internal | Minimal CA | Creating ca directory
|
||||
ansible.builtin.file:
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
ansible.builtin.assert:
|
||||
that:
|
||||
- config_cert.cert.key_size in CERT_HC.options.key_size.cert
|
||||
- config_cert.cert.email is none or config_cert.cert.email | validate_email
|
||||
- config_cert.cert.email | default(none, true) is none or config_cert.cert.email | validate_email
|
||||
|
||||
- name: Certificates | Internal | Cert | Generate private key (encrypted)
|
||||
community.crypto.openssl_privatekey:
|
||||
|
|
|
|||
Loading…
Reference in New Issue