You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: "Copy Venafi PEM certificate file to remote location {{ certificate_remote_cert_path if certificate_remote_cert_path is defined else certificate_cert_path }}"
copy:
src: "{{ certificate_cert_path }}"
dest: "{{ certificate_remote_cert_path if certificate_remote_cert_path is defined else certificate_cert_path }}"
mode: 0644
when: not certificate_pkcs12_format
ACTUAL RESULTS
The task above is skipped.
ENVIRONMENT DETAILS
We're using the latest version of the collection on top of Red Hat Ansible Tower which is using Ansible 2.9.x
COMMENTS/WORKAROUNDS
If you explicitly set certificate_pkcs12_format: false things work fine.
The text was updated successfully, but these errors were encountered:
PROBLEM SUMMARY
Venafi Certificate PEM file is not copied unless
certificate_pkcs12_format
is explicitly set tofalse
STEPS TO REPRODUCE
certificate_pkcs12_format
to any value (expecting the default of 'false' to take effect)EXPECTED RESULTS
This task should fire:
ansible-collection-venafi/roles/certificate/tasks/local-certificate.yml
Lines 46 to 51 in ea699f1
ACTUAL RESULTS
The task above is skipped.
ENVIRONMENT DETAILS
We're using the latest version of the collection on top of Red Hat Ansible Tower which is using Ansible 2.9.x
COMMENTS/WORKAROUNDS
If you explicitly set
certificate_pkcs12_format: false
things work fine.The text was updated successfully, but these errors were encountered: