From 8b9453ed6f612d8374a091e3dcac02047e8843d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Heleno?= <33546359+lentidas@users.noreply.github.com> Date: Wed, 9 Oct 2024 15:08:58 +0200 Subject: [PATCH] feat!: point the Argo CD provider to the new repository (#39) * feat!: point the Argo CD provider to the new repository * docs(terraform-docs): generate docs and write to README.adoc --------- Co-authored-by: lentidas --- README.adoc | 26 +++++++++++++------------- terraform.tf | 4 ++-- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.adoc b/README.adoc index 535abe1..d3fb267 100644 --- a/README.adoc +++ b/README.adoc @@ -66,7 +66,7 @@ This module must be one of the first ones to be deployed and consequently it nee The following requirements are needed by this module: -- [[requirement_argocd]] <> (>= 5) +- [[requirement_argocd]] <> (>= 6) - [[requirement_null]] <> (>= 3) @@ -76,11 +76,11 @@ The following requirements are needed by this module: The following providers are used by this module: -- [[provider_utils]] <> (>= 1) +- [[provider_null]] <> (>= 3) -- [[provider_argocd]] <> (>= 5) +- [[provider_argocd]] <> (>= 6) -- [[provider_null]] <> (>= 3) +- [[provider_utils]] <> (>= 1) === Modules @@ -96,8 +96,8 @@ Version: ~> 5.0 The following resources are used by this module: -- https://registry.terraform.io/providers/oboukili/argocd/latest/docs/resources/application[argocd_application.this] (resource) -- https://registry.terraform.io/providers/oboukili/argocd/latest/docs/resources/project[argocd_project.this] (resource) +- https://registry.terraform.io/providers/argoproj-labs/argocd/latest/docs/resources/application[argocd_application.this] (resource) +- https://registry.terraform.io/providers/argoproj-labs/argocd/latest/docs/resources/project[argocd_project.this] (resource) - https://registry.terraform.io/providers/hashicorp/null/latest/docs/resources/resource[null_resource.dependencies] (resource) - https://registry.terraform.io/providers/hashicorp/null/latest/docs/resources/resource[null_resource.this] (resource) - https://registry.terraform.io/providers/cloudposse/utils/latest/docs/data-sources/deep_merge_yaml[utils_deep_merge_yaml.values] (data source) @@ -154,7 +154,7 @@ Description: Override of target revision of the application chart. Type: `string` -Default: `"v3.4.0"` +Default: `"v3.6.0"` ==== [[input_helm_values]] <> @@ -278,7 +278,7 @@ Description: ID to pass other modules in order to refer to this module as a depe [cols="a,a",options="header,autowidth"] |=== |Name |Version -|[[requirement_argocd]] <> |>= 5 +|[[requirement_argocd]] <> |>= 6 |[[requirement_null]] <> |>= 3 |[[requirement_utils]] <> |>= 1 |=== @@ -288,9 +288,9 @@ Description: ID to pass other modules in order to refer to this module as a depe [cols="a,a",options="header,autowidth"] |=== |Name |Version -|[[provider_null]] <> |>= 3 -|[[provider_argocd]] <> |>= 5 +|[[provider_argocd]] <> |>= 6 |[[provider_utils]] <> |>= 1 +|[[provider_null]] <> |>= 3 |=== = Modules @@ -306,8 +306,8 @@ Description: ID to pass other modules in order to refer to this module as a depe [cols="a,a",options="header,autowidth"] |=== |Name |Type -|https://registry.terraform.io/providers/oboukili/argocd/latest/docs/resources/application[argocd_application.this] |resource -|https://registry.terraform.io/providers/oboukili/argocd/latest/docs/resources/project[argocd_project.this] |resource +|https://registry.terraform.io/providers/argoproj-labs/argocd/latest/docs/resources/application[argocd_application.this] |resource +|https://registry.terraform.io/providers/argoproj-labs/argocd/latest/docs/resources/project[argocd_project.this] |resource |https://registry.terraform.io/providers/hashicorp/null/latest/docs/resources/resource[null_resource.dependencies] |resource |https://registry.terraform.io/providers/hashicorp/null/latest/docs/resources/resource[null_resource.this] |resource |https://registry.terraform.io/providers/cloudposse/utils/latest/docs/data-sources/deep_merge_yaml[utils_deep_merge_yaml.values] |data source @@ -345,7 +345,7 @@ Description: ID to pass other modules in order to refer to this module as a depe |[[input_target_revision]] <> |Override of target revision of the application chart. |`string` -|`"v3.4.0"` +|`"v3.6.0"` |no |[[input_helm_values]] <> diff --git a/terraform.tf b/terraform.tf index d0a8e8b..dda10f8 100644 --- a/terraform.tf +++ b/terraform.tf @@ -1,8 +1,8 @@ terraform { required_providers { argocd = { - source = "oboukili/argocd" - version = ">= 5" + source = "argoproj-labs/argocd" + version = ">= 6" } utils = { source = "cloudposse/utils"