-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: Resource Type Not Found when trying to use examples/resource #11
Comments
Hey @admeeer, it's been a while since I've touched this code, but that does seem like an odd error. Here are two things that come to mind:
terraform {
required_providers {
pinecone = {
source = "thiskevinwang/pinecone"
version = "0.1.2"
}
}
}
provider "pinecone" {
# Configuration options
}
TF_LOG=DEBUG terraform plan |
I created a new project with just the examples/resource and your revisions. Here's the log from that:
|
From hashicorp/terraform#33990
@admeeer Can you try Terraform v1.5? |
@thiskevinwang That works! According to hashicorp/terraform#33990 and then hashicorp/terraform-plugin-framework#853 it looks like the issue was fixed in terraform-plugin-framework v1.4.1. I did a little further testing and it looks like just pointing the |
Using the example in
examples/resource
and then runningterraform init
thenterraform plan
gives me:Is this a registry issue? I have this in
main.tf
, and when I runterraform init
it successfully installs the binary.The text was updated successfully, but these errors were encountered: