|
|
@ -6,6 +6,11 @@
|
|
|
|
shell: 'openssl x509 -noout -modulus -in {{ output_dir }}/cert.pem'
|
|
|
|
shell: 'openssl x509 -noout -modulus -in {{ output_dir }}/cert.pem'
|
|
|
|
register: cert_modulus
|
|
|
|
register: cert_modulus
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Validate certificate (test - issuer value)
|
|
|
|
|
|
|
|
shell: 'openssl x509 -noout -in {{ output_dir}}/cert.pem -text | grep "Issuer" | sed "s/.*: \(.*\)/\1/g"'
|
|
|
|
|
|
|
|
register: cert_issuer
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Validate certificate (test - certficate version == default == 3)
|
|
|
|
- name: Validate certificate (test - certficate version == default == 3)
|
|
|
|
shell: 'openssl x509 -noout -in {{ output_dir}}/cert.pem -text | grep "Version" | sed "s/.*: \(.*\) .*/\1/g"'
|
|
|
|
shell: 'openssl x509 -noout -in {{ output_dir}}/cert.pem -text | grep "Version" | sed "s/.*: \(.*\) .*/\1/g"'
|
|
|
|
register: cert_version
|
|
|
|
register: cert_version
|
|
|
@ -15,6 +20,7 @@
|
|
|
|
that:
|
|
|
|
that:
|
|
|
|
- cert_modulus.stdout == privatekey_modulus.stdout
|
|
|
|
- cert_modulus.stdout == privatekey_modulus.stdout
|
|
|
|
- cert_version.stdout == '3'
|
|
|
|
- cert_version.stdout == '3'
|
|
|
|
|
|
|
|
- cert_issuer.stdout == 'CN=www.example.com'
|
|
|
|
|
|
|
|
|
|
|
|
- name: Validate certificate idempotence
|
|
|
|
- name: Validate certificate idempotence
|
|
|
|
assert:
|
|
|
|
assert:
|
|
|
|