You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
╷
│ Warning: Provider development overrides are in effect
│
│ The following provider development overrides are set in the CLI configuration:
│ - hashicorp.com/edu/hashicups-pf in ../../..
│
│ The behavior may therefore not match any released version of the provider and applying changes may cause the state to become incompatible with published releases.
╵
╷
│ Error: Data Source Type Not Found
│
│ with data.scaffolding_example.example,
│ on data-source.tf line 1, in data "scaffolding_example" "example":
│ 1: data "scaffolding_example" "example" {
│
│ No data source type named "scaffolding_example" was found in the provider.
╵
Steps to Reproduce
These steps assume a working go installation, and the last step relies on jq.
The same reproduction steps work properly with terraform v1.5.7.
>~/bin/terraform-1.5.7 version
Terraform v1.5.7
on linux_amd64
Your version of Terraform is out of date! The latest version
is 1.6.0. You can update by downloading from https://www.terraform.io/downloads.html
>~/bin/terraform-1.5.7 plan
╷
│ Warning: Provider development overrides are in effect
│
│ The following provider development overrides are setin the CLI configuration:
│ - hashicorp.com/edu/hashicups-pf in ../../..
│
│ The behavior may therefore not match any released version of the provider and applying changes may cause the state to become incompatible with published releases.
╵
data.scaffolding_example.example: Reading...
data.scaffolding_example.example: Read complete after 0s [id=example-id]
No changes. Your infrastructure matches the configuration.
Terraform has compared your real infrastructure against your configuration and found no differences, so no changes are needed.
References
No response
The text was updated successfully, but these errors were encountered:
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
Terraform Version
Terraform Configuration Files
Debug Output
https://gist.github.com/freakinhippie/f3339ae79b7de7795d91eb72f47ba9a1
Expected Behavior
The plan should succeed.
Actual Behavior
╷
│ Warning: Provider development overrides are in effect
│
│ The following provider development overrides are set in the CLI configuration:
│ - hashicorp.com/edu/hashicups-pf in ../../..
│
│ The behavior may therefore not match any released version of the provider and applying changes may cause the state to become incompatible with published releases.
╵
╷
│ Error: Data Source Type Not Found
│
│ with data.scaffolding_example.example,
│ on data-source.tf line 1, in data "scaffolding_example" "example":
│ 1: data "scaffolding_example" "example" {
│
│ No data source type named "scaffolding_example" was found in the provider.
╵
Steps to Reproduce
These steps assume a working
go
installation, and the last step relies onjq
.git clone https://github.com/hashicorp/terraform-provider-scaffolding-framework
mv terraform-provider-scaffolding-framework terraform-provider-hashicups-pf
cd terraform-provider-hashicups-pf
go mod tidy
go build -o terraform-provider-hashicups-pf
cd examples/data-sources/scaffolding_example/
echo -e 'provider_installation {\n dev_overrides {\n "hashicorp.com/edu/hashicups-pf" = "../../../"\n }\n direct {}\n}' | tee development.tfrc
echo -e 'terraform {\n required_providers {\n scaffolding = {\n source = "hashicorp.com/edu/hashicups-pf"\n }\n }\n}' | tee terraform.tf
export TF_CLI_CONFIG_FILE=development.tfrc
terraform version
terraform plan
terraform providers schema -json | jq '.provider_schemas | to_entries[] | .value.data_source_schemas | keys'
Additional Context
The same reproduction steps work properly with terraform v1.5.7.
References
No response
The text was updated successfully, but these errors were encountered: