Provider "vdc" Error: Failed to query available provider packages

I am trying to use the provider “vdc” and I am getting the error of “Failed to query available provider packages” from all of the documentation I have seen it should be a good provider, but I am not sure why I am getting this error. below is my code and the entire error, any suggestions would be great, and thanks in advance!

Code:

terraform {

required_providers {
cloudflare = {
source = “cloudflare/cloudflare”
version = “~> 4.12”
}
}

cloud {
organization = “org”

workspaces {
name = “ws”
}
}
}

Connect VMware vCloud Director Provider

provider “vcd” {
user = var.vcd_user
password = var.vcd_pass
auth_type = “integrated”
org = var.vcd_org
allow_unverified_ssl = false
}

Error:

Error: Failed to query available provider packages

│ Could not retrieve the list of available versions for provider cloudflare/vdc: provider registry registry.terraform.io does not have a provider named Terraform Registry

│ All modules should specify their required_providers so that external consumers will get the correct providers when using a module. To see which modules are currently depending on cloudflare/vdc, run the following command:
│ terraform providers

Hi @jdeblaey,

It looks like you have not told Terraform where to find the vcd provider. You need to add that to the required_providers section just like you did with cloudflare:

  required_providers {
    vcd = {
      source = "vmware/vcd"
      version = "3.10.0"
    }
  }

@jbardin thanks!! total case of the Mondays there!! Much appreciated!