I am new with Terraform and I was trying to play with hashicups. Based on https://registry.terraform.io/providers/hashicorp/hashicups/latest I added the provider
terraform {
required_providers {
hashicups = {
source = "hashicorp/hashicups"
version = "0.3.1"
}
}
}
and ran terraform init but .. I am receiving the following error
terraform init error
Looking the github repository https://github.com/hashicorp/terraform-provider-hashicups I had the impression that I need to build the provider, but I am not 100% sure. Anyone faced this issue before ?
Thank you very much.
I tried different version and different provider source, like hashicorp.com/edu/hashicups. I tried to build the provider code but without success I couldn’t find a way to refer to the local provider.