From 5172174e081620dcdeab10a7efd6c058fe905024 Mon Sep 17 00:00:00 2001 From: Jonathan Ballet Date: Tue, 14 Nov 2023 16:46:17 +0100 Subject: [PATCH] Use the new GitHub namespace (#92) --- README.md | 2 +- examples/data-sources/camunda_channel/provider.tf | 2 +- examples/data-sources/camunda_cluster_plan_type/provider.tf | 2 +- examples/data-sources/camunda_region/provider.tf | 2 +- examples/resources/camunda_cluster/provider.tf | 2 +- examples/resources/camunda_cluster_client/provider.tf | 2 +- .../resources/camunda_cluster_connector_secret/provider.tf | 2 +- examples/resources/camunda_cluster_ip_whitelist/provider.tf | 2 +- go.mod | 2 +- internal/provider/camunda_cluster_ip_whitelist_resource.go | 2 +- main.go | 4 ++-- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 5d750b4..e0305e0 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/examples/data-sources/camunda_channel/provider.tf b/examples/data-sources/camunda_channel/provider.tf index 047dd1f..3b400c6 100644 --- a/examples/data-sources/camunda_channel/provider.tf +++ b/examples/data-sources/camunda_channel/provider.tf @@ -4,7 +4,7 @@ variable "camunda_client_secret" {} terraform { required_providers { camunda = { - source = "multani/camunda" + source = "camunda-community-hub/camunda" } } } diff --git a/examples/data-sources/camunda_cluster_plan_type/provider.tf b/examples/data-sources/camunda_cluster_plan_type/provider.tf index 047dd1f..3b400c6 100644 --- a/examples/data-sources/camunda_cluster_plan_type/provider.tf +++ b/examples/data-sources/camunda_cluster_plan_type/provider.tf @@ -4,7 +4,7 @@ variable "camunda_client_secret" {} terraform { required_providers { camunda = { - source = "multani/camunda" + source = "camunda-community-hub/camunda" } } } diff --git a/examples/data-sources/camunda_region/provider.tf b/examples/data-sources/camunda_region/provider.tf index 047dd1f..3b400c6 100644 --- a/examples/data-sources/camunda_region/provider.tf +++ b/examples/data-sources/camunda_region/provider.tf @@ -4,7 +4,7 @@ variable "camunda_client_secret" {} terraform { required_providers { camunda = { - source = "multani/camunda" + source = "camunda-community-hub/camunda" } } } diff --git a/examples/resources/camunda_cluster/provider.tf b/examples/resources/camunda_cluster/provider.tf index f301557..5a3bc39 100644 --- a/examples/resources/camunda_cluster/provider.tf +++ b/examples/resources/camunda_cluster/provider.tf @@ -21,7 +21,7 @@ variable "camunda_token_url" { terraform { required_providers { camunda = { - source = "multani/camunda" + source = "camunda-community-hub/camunda" } } } diff --git a/examples/resources/camunda_cluster_client/provider.tf b/examples/resources/camunda_cluster_client/provider.tf index c567d58..8f8cc9b 100644 --- a/examples/resources/camunda_cluster_client/provider.tf +++ b/examples/resources/camunda_cluster_client/provider.tf @@ -4,7 +4,7 @@ variable "camunda_client_secret" {} terraform { required_providers { camunda = { - source = "multani/camunda" + source = "camunda-community-hub/camunda" } } } diff --git a/examples/resources/camunda_cluster_connector_secret/provider.tf b/examples/resources/camunda_cluster_connector_secret/provider.tf index c567d58..8f8cc9b 100644 --- a/examples/resources/camunda_cluster_connector_secret/provider.tf +++ b/examples/resources/camunda_cluster_connector_secret/provider.tf @@ -4,7 +4,7 @@ variable "camunda_client_secret" {} terraform { required_providers { camunda = { - source = "multani/camunda" + source = "camunda-community-hub/camunda" } } } diff --git a/examples/resources/camunda_cluster_ip_whitelist/provider.tf b/examples/resources/camunda_cluster_ip_whitelist/provider.tf index f301557..5a3bc39 100644 --- a/examples/resources/camunda_cluster_ip_whitelist/provider.tf +++ b/examples/resources/camunda_cluster_ip_whitelist/provider.tf @@ -21,7 +21,7 @@ variable "camunda_token_url" { terraform { required_providers { camunda = { - source = "multani/camunda" + source = "camunda-community-hub/camunda" } } } diff --git a/go.mod b/go.mod index 3c76272..bc682aa 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/multani/terraform-provider-camunda +module github.com/camunda-community-hub/terraform-provider-camunda go 1.19 diff --git a/internal/provider/camunda_cluster_ip_whitelist_resource.go b/internal/provider/camunda_cluster_ip_whitelist_resource.go index 3e7ae10..e600935 100644 --- a/internal/provider/camunda_cluster_ip_whitelist_resource.go +++ b/internal/provider/camunda_cluster_ip_whitelist_resource.go @@ -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" ) diff --git a/main.go b/main.go index 644f69f..5d42c67 100644 --- a/main.go +++ b/main.go @@ -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 @@ -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, }