Skip to content

Commit

Permalink
Use the new GitHub namespace (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
multani authored Nov 14, 2023
1 parent 8c8ca4f commit 5172174
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Further information can be found under https://docs.camunda.io/.
This Terraform provider allows to manage the resources provided by the Camunda
Platform 8, such as clusters, clients, etc.

* Documentation: https://registry.terraform.io/providers/multani/camunda/
* Documentation: https://registry.terraform.io/providers/camunda-community-hub/camunda/


## Development
Expand Down
2 changes: 1 addition & 1 deletion examples/data-sources/camunda_channel/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ variable "camunda_client_secret" {}
terraform {
required_providers {
camunda = {
source = "multani/camunda"
source = "camunda-community-hub/camunda"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ variable "camunda_client_secret" {}
terraform {
required_providers {
camunda = {
source = "multani/camunda"
source = "camunda-community-hub/camunda"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/data-sources/camunda_region/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ variable "camunda_client_secret" {}
terraform {
required_providers {
camunda = {
source = "multani/camunda"
source = "camunda-community-hub/camunda"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/camunda_cluster/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ variable "camunda_token_url" {
terraform {
required_providers {
camunda = {
source = "multani/camunda"
source = "camunda-community-hub/camunda"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/camunda_cluster_client/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ variable "camunda_client_secret" {}
terraform {
required_providers {
camunda = {
source = "multani/camunda"
source = "camunda-community-hub/camunda"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ variable "camunda_client_secret" {}
terraform {
required_providers {
camunda = {
source = "multani/camunda"
source = "camunda-community-hub/camunda"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ variable "camunda_token_url" {
terraform {
required_providers {
camunda = {
source = "multani/camunda"
source = "camunda-community-hub/camunda"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/multani/terraform-provider-camunda
module github.com/camunda-community-hub/terraform-provider-camunda

go 1.19

Expand Down
2 changes: 1 addition & 1 deletion internal/provider/camunda_cluster_ip_whitelist_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
"github.com/hashicorp/terraform-plugin-framework/types"
"github.com/hashicorp/terraform-plugin-log/tflog"
"github.com/multani/terraform-provider-camunda/internal/validators"
"github.com/camunda-community-hub/terraform-provider-camunda/internal/validators"
console "github.com/sijoma/console-customer-api-go"
)

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/hashicorp/terraform-plugin-framework/providerserver"

"github.com/multani/terraform-provider-camunda/internal/provider"
"github.com/camunda-community-hub/terraform-provider-camunda/internal/provider"
)

// Run "go generate" to format example terraform files and generate the docs for the registry/website
Expand Down Expand Up @@ -37,7 +37,7 @@ func main() {

opts := providerserver.ServeOpts{
// TODO: Update this string with the published name of your provider.
Address: "registry.terraform.io/multani/camunda",
Address: "registry.terraform.io/camunda-community-hub/camunda",
Debug: debug,
}

Expand Down

0 comments on commit 5172174

Please sign in to comment.