akeyless-community / terraform-provider-akeyless

Mozilla Public License 2.0
12 stars 10 forks source link

registry.terraform.io does not have a provider #4

Closed eking-go closed 3 years ago

eking-go commented 3 years ago

Hello.

https://registry.terraform.io/hashicorp/akeyless - I got 404

$ cat main.tf 
terraform {
  required_providers {
    akeyless = {
      version = ">=1.0.0"
    }
  }
}

provider "akeyless" {
  api_gateway_address = "https://api.akeyless.io"
 azure_ad_login {
    access_id = "***"
  }
}

data "akeyless_secret" "secret" {
  path = "***
$ terraform -v
Terraform v0.13.7
$ terraform init

Initializing the backend...

Initializing provider plugins...
- Finding hashicorp/akeyless versions matching ">= 1.0.0"...

Error: Failed to install provider

Error while installing hashicorp/akeyless: provider registry
registry.terraform.io does not have a provider named
registry.terraform.io/hashicorp/akeyless

If I build provider from source and copy it to ~/.terraform.d/plugins/linux_amd64 terraform does not see it.

eking-go commented 3 years ago

You write that https://github.com/akeyless-community/terraform-provider-akeyless#requirements Terraform >=0.12

Maybe you have to fix the requirements? Why does not works local built provider from ~/.terraform.d/plugins/linux_amd64?

liorhasson commented 3 years ago

Hey, Right, our minimum requirement is 0.13, the readme was updated

eking-go commented 3 years ago

Thank you.