How to use Databricks provider for terraform locally without GitHub access

I was trying to deploy databricks resource into azure using terraform, but it was failed to get the provider directly from github registry due to firewall restrictions policy within our organization.
so, I’ve tried this filesystem mirror provider installation method, but still receiving below error:

│ Error: Failed to query available provider packages

│ Could not retrieve the list of available versions for provider
│ databricks/databricks: provider Terraform Registry
│ was not found in any of the search locations
C:\TerraformProviders\databricks\databricks\1.24.0\windows_amd64

Terraform.rc file used:

provider_installation {
filesystem_mirror {
path = “C:\TerraformProviders\databricks\databricks\1.24.0\windows_amd64”
include = [“databricks/databricks/*”]
}
direct {
exclude = [“Terraform Registry”]
}
}

I would appreciate any solutions or guidance on how to setup and use databricks provider for terraform locally without relying on Github.