environment: windows 10 Ubuntu 18.04 LTS.
python version as standard:
ansible-playbook 2.8.5
config file = /etc/ansible/ansible.cfg
configured module search path = [u'/home/antienho/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /usr/lib/python2.7/dist-packages/ansible
executable location = /usr/bin/ansible-playbook
python version = 2.7.15+ (default, Jul 9 2019, 16:51:35) [GCC 7.4.0]
Using /etc/ansible/ansible.cfg as config file
in a ACI environment, and installed the openssl cert key with .pem and .key
by following
openssl req -new -newkey rsa:1024 -days 36500 -nodes -x509 -keyout antien.key -out antien.pem -subj '/CN=Antien/O=conreslab/C=US'.
the .pem is properly installed in ACI.
however when run the simple yml file.
I always getting the topic error. pyopenssl is not available.
I did install the pyopenssl with "pip3 install pyopenssl"..as latest pyopenssl 19.0.0 version..see below:
pip3 install pyopenssl
Collecting pyopenssl
Collecting six>=1.5.2 (from pyopenssl)
Collecting cryptography>=2.3 (from pyopenssl)
Collecting cffi!=1.11.3,>=1.8 (from cryptography>=2.3->pyopenssl)
Collecting asn1crypto>=0.21.0 (from cryptography>=2.3->pyopenssl)
Collecting pycparser (from cffi!=1.11.3,>=1.8->cryptography>=2.3->pyopenssl)
Installing collected packages: six, pycparser, cffi, asn1crypto, cryptography, pyopenssl
Successfully installed asn1crypto-0.24.0 cffi-1.12.3 cryptography-2.7 pycparser-2.19 pyopenssl-19.0.0 six-1.12.0
I will post any addition information if required. Any suggestions are appreciated.
Thanks
Antien