Airflow Plugin for Vault

We are trying to use vault as secrets backend for Airflow. The vault server is HTTPS enabled but when i use the https url in the airflow.cfg file i am getting SSL error.Is there a way to bypass SSL error from airflow

Is there a way to ignore ssl verification for the vault server from airflow.
Following is the secrets backend configuration for airflow

[secrets]
backend = airflow.providers.hashicorp.secrets.vault.VaultBackend
backend_kwargs ={
“url”: “https://hostname:portno”,
“auth_type”:“userpass”,
“connections_path”:"",
“kv_engine_version”:2,
“mount_point”:"…",
“variables_path”:null,
“auth_mount_point”:"…",
“username”:"…",
“password”:"… "
}