diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index cc1cd76..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,3 +0,0 @@ -# These are supported funding model platforms - -github: [lexfrei] diff --git a/CHANGELOG.md b/CHANGELOG.md index 1eb548f..3f64798 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## v1.4.3 + +The provider moved to the cozystack GitHub organization and now publishes under the `cozystack/cozystack` registry namespace. The tracked Cozystack API version (`apps.cozystack.io` v1.4.3) carries no schema changes relevant to the provider over v1.4.2. + +### Breaking changes + +- Registry source changed from `lexfrei/cozystack` to `cozystack/cozystack`. Update the `source` in your `required_providers` block (and any `dev_overrides`) accordingly. + ## v1.4.2 Initial release. The version tracks the Cozystack API version (`apps.cozystack.io` v1.4.2) the provider is built against. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b9e9067..76f9165 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,7 +25,7 @@ Be respectful and constructive in all interactions. Contributors of all experien ## Development Setup ```bash -git clone https://github.com/lexfrei/terraform-provider-cozystack.git +git clone https://github.com/cozystack/terraform-provider-cozystack.git cd terraform-provider-cozystack make build # build the provider binary make test # run unit tests with the race detector @@ -43,7 +43,7 @@ To exercise the provider with a real `tofu`/`terraform` configuration before it make install ``` -Then add a `dev_overrides` block to `~/.terraformrc` (or a `TF_CLI_CONFIG_FILE`) mapping `registry.opentofu.org/lexfrei/cozystack` to your `GOBIN`. With an override in place, run `tofu plan` directly — no `tofu init` is needed. +Then add a `dev_overrides` block to `~/.terraformrc` (or a `TF_CLI_CONFIG_FILE`) mapping `registry.opentofu.org/cozystack/cozystack` to your `GOBIN`. With an override in place, run `tofu plan` directly — no `tofu init` is needed. ### Acceptance Tests diff --git a/README.md b/README.md index 6e1a372..1ae0cc2 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ The names of these backing Secrets/Services are chart conventions (`postgres- "${work}/dev.tfrc" < "${work}/main.tf" <<'EOF' terraform { required_providers { - cozystack = { source = "registry.opentofu.org/lexfrei/cozystack" } + cozystack = { source = "registry.opentofu.org/cozystack/cozystack" } } } provider "cozystack" {}