diff --git a/README.adoc b/README.adoc index 2fe2541..3b03126 100644 --- a/README.adoc +++ b/README.adoc @@ -204,7 +204,7 @@ When using Keycloak as an OIDC provider for the Longhorn Dashboard, you need to The following requirements are needed by this module: -- [[requirement_argocd]] <> (>= 5) +- [[requirement_argocd]] <> (>= 6) - [[requirement_random]] <> (>= 3) @@ -216,18 +216,18 @@ The following providers are used by this module: - [[provider_random]] <> (>= 3) -- [[provider_utils]] <> (>= 1) +- [[provider_null]] <> -- [[provider_argocd]] <> (>= 5) +- [[provider_argocd]] <> (>= 6) -- [[provider_null]] <> +- [[provider_utils]] <> (>= 1) === Resources 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/random/latest/docs/resources/string[random_string.oauth2_cookie_secret] (resource) @@ -299,7 +299,7 @@ Description: Override of target revision of the application chart. Type: `string` -Default: `"v3.8.0"` +Default: `"v3.9.0"` ==== [[input_helm_values]] <> @@ -577,7 +577,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_random]] <> |>= 3 |[[requirement_utils]] <> |>= 1 |=== @@ -589,7 +589,7 @@ Description: ID to pass other modules in order to refer to this module as a depe |Name |Version |[[provider_random]] <> |>= 3 |[[provider_null]] <> |n/a -|[[provider_argocd]] <> |>= 5 +|[[provider_argocd]] <> |>= 6 |[[provider_utils]] <> |>= 1 |=== @@ -598,8 +598,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/random/latest/docs/resources/string[random_string.oauth2_cookie_secret] |resource @@ -656,7 +656,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.8.0"` +|`"v3.9.0"` |no |[[input_helm_values]] <> diff --git a/terraform.tf b/terraform.tf index dcf2bd4..3706704 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"