Hi all,
With Terraform v0.13+ I can configure an in-house provider using the terraform.required_providers block. For example:
terraform {
required_providers {
happycloud = {
source = "terraform.example.com/awesomecorp/happycloud"
version = "1.0.0"
}
}
}
However, it seems Terraform is only expecting this block in a module not in user level configuration like in ~/.terraformrc
. As a provider developer I am constantly recompiling a local provider and making quick test modules to use that provider. Now with 0.13+ I have this extra 8 lines that needs to be in every module, I would prefer to just define it once in a user level configuration file. Is that possible?