11 lines
422 B
YAML
11 lines
422 B
YAML
|
---
|
||
|
- name: register openssl version
|
||
|
shell: "openssl version | cut -d' ' -f2"
|
||
|
register: openssl_version
|
||
|
|
||
|
- name: register cryptography version
|
||
|
command: python -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 }}"
|