v7.0.0
Provider has moved to a new location ☝️
As announced in yesterdays release (See v6.2.0), we finally made it happen 🎉 🎉 :
Starting with this version, the Terraform provider is now only available via source = "argoproj-labs/argocd"
.
Please also read yesterdays release note:
🎺 🥳 We are pleased to announce the first release under the umbrella of argoproj-labs
We moved the repository (source code) from "github.com/oboukili/terraform-provider-argocd/" to "github.com/argoproj-labs/terraform-provider-argocd". You can find the background about this decision in this issue:
- Make provider "official" and move it to github.com/argoproj #323
The provider version 6.2.0 is the last version which is usable via both
source = "oboukili/argocd"
ANDsource = "argoproj-labs/argocd"
.We will release the version 7.0.0 in a couple of days to (hopefully) get everybodys attention that the provider has a new home. But we will not change any stucture or API. From the technical aspect, everything between 6.2.0 and 7.0.0 is fully compatible and you are safe to upgrade to 7.0.0 by changing this line in your code:
--- a/versions.tf +++ b/versions.tf @@ -5,7 +5,7 @@ terraform { version = "1.7.4" } argocd = { - source = "oboukili/argocd" + source = "argoproj-labs/argocd" version = "6.1.1" } helm = {The only thing we will change is that we sign the provider with a different GPG key which is no longer a personal key of @oboukili . The fingerprint of the key will therefore change:
- 09A6EABF546E8638 + 6421DA8DFD8F48D0
The full migration guide can be found inside our README: Migrate provider source oboukili
-> argoproj-labs
We also created a new Slack channel #argo-cd-terraform-provider on CNCF's Slack Workspace, where users can interact with the rest of the community around the provider.
What's Changed
- docs: Move Contributing docs to separate file by @mkilchhofer in #420
- docs: Replace "oboukili" with "argoproj-labs" by @mkilchhofer in #421
- chore: Prepare for "main" branch by @mkilchhofer in #422
- chore: Update stale config by @mkilchhofer in #423
- chore: Configure dependabot explicitly by @mkilchhofer in #425
- chore: Update CodeQL workflow by @mkilchhofer in #426
- chore: Prepare to sign with new GPG key (argoproj-labs) by @mkilchhofer in #424
- chore: Bump golangci-lint-action v4 -> v6 and pin all other actions by @mkilchhofer in #436
Full Changelog: v6.2.0...v7.0.0