How am I supposed to download this provider from TF registry
FalcoSuessgott opened this issue · 1 comments
FalcoSuessgott commented
# main.tf
terraform {
required_providers {
oneview = {
source = "HewlettPackard/oneview"
version = "8.3.0-13"
}
}
}
results in:
> terraform init
Initializing the backend...
Initializing provider plugins...
- Finding hewlettpackard/oneview versions matching "8.3.0-13"...
╷
│ Error: Failed to query available provider packages
│
│ Could not retrieve the list of available versions for provider hewlettpackard/oneview: no available releases match the given constraints 8.3.0-13
╵
FalcoSuessgott commented
dev_overrides was blocking the installation, adding direct {}
to .terraformrc
solved it. (https://developer.hashicorp.com/terraform/cli/config/config-file#provider-installation)