10 lines
449 B
YAML
10 lines
449 B
YAML
---
|
|
- name: register openssl version
|
|
shell: "openssl version | cut -d' ' -f2"
|
|
register: openssl_version
|
|
|
|
- name: register cryptography version
|
|
command: "{{ ansible_python.executable }} -c 'import cryptography; print(cryptography.__version__)'"
|
|
register: cryptography_version
|
|
|
|
- debug: msg="ACME test container IP is {{ acme_host }}; OpenSSL version is {{ openssl_version.stdout }}; cryptography version is {{ cryptography_version.stdout }}"
|