HTTPS connection with Netapp ONTAP backend using Ansible

This is regarding the issue: Insecure communication with NetApp backend systems through (at least the) na_cdot* modules
Link: https://github.com/ansible/ansible/issues/33873

Description:
Instead of by default doing TLS over port 443 with ZAPI it is hardcoded configured to HTTP with port 80 with the inability for users to migrate to a secure situation without hacking in the library.

Our solution:
If we want to connect ONTAP backend via HTTPS with environment variable PYTHONHTTPSVERIFY set to 0, it works fine.

We have also confirm the success run of playbook by setting the environment variable PYTHONHTTPSVERIFY to 0 within the playbook file.

Is the fix acceptable?