Closed stephengroat-dd closed 3 years ago
Hey @stephengroat-dd, yes this make sense. I've updated the repo name and included a new release with the correct name in the binaries. https://github.com/appgate/terraform-provider-appgate-sdp/releases/tag/v0.3.5
Try running make dev
and use the following refrence in the tf file
terraform {
required_providers {
appgate = {
source = "appgate.com/appgate/appgate-sdp"
}
}
}
seems to be working great thanks!
just started using the new terraform provider and so far, it's working well!
when getting the provider setup, the lack of follow the terraform convention of
terraform-provider-[PROVIDER_NAME]
format has become somewhat of an issue. we use theterraform.d/plugins
directory to use repo-stored copies of the provider. since the repo is namedsdp-terraform-provider
,goreleaser
is creating zips in the same format. since the only acceptable format for terraform 14+ isterraform-provider-TYPE_VERSION_TARGET.zip
(as well as the binary inside ofterraform-provider-TYPE_VERSION
, it causes us to have to rename the binaries before usecould the repo be renamed to follow the terraform naming convention and release zips in the conventional format so they can be used without modification?