SSL issue on vsphere module

Hello,

We are currently experiencing difficulties accessing vCenter via SSL. Below are the steps we have taken so far:

"
provider “vsphere” {
user = “{{vmware_user}}”
password = “{{vmware_pass}}”
vsphere_server = “{{vcenter}}”
allow_unverified_ssl = false
}
"

We are aware that setting allow_unverified_ssl to true would allow us to proceed without SSL certificate validation. However, our specific requirement is to validate the SSL certificate. In this context, we are wondering how to specify the SSL certificate or PEM file within the provider block.

Could you please advise us on the exact attribute we should use to reference the CRT file?