n3integration/terraform-provider-godaddy

Support for darwin_arm64

allomov opened this issue · 2 comments

Hello! And thank you for the provider!

Do you think it'll be hard to add support for darwin_arm64 platform?

Here is how I was able to resolve this issue for my localhost:

git clone https://github.com/n3integration/terraform-provider-godaddy.git
cd terraform-provider-godaddy
go get -u golang.org/x/sys
make local
mv ~/.terraform.d/plugins/{github.com,registry.terraform.io}

This places a provider binary file under ~/.terraform.d/plugins/registry.terraform.io/n3integration/godaddy/1.8.7/darwin_arm64/terraform-provider-godaddy.

Then I needed to edit ~/.terraformrc (see details here)

provider_installation {

  filesystem_mirror {
    path    = "/Users/allomau/.terraform.d/plugins"
    include = ["registry.terraform.io/n3integration/godaddy"]
  }
  direct {
    exclude = ["registry.terraform.io/n3integration/godaddy"]
  }
}

Hey @allomov 👋 - thanks for opening up an issue. This should be fixed in the 1.9.1 release of the provider.