diff --git a/README.adoc b/README.adoc index 0d76fa3..0840ed3 100644 --- a/README.adoc +++ b/README.adoc @@ -109,7 +109,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) @@ -121,7 +121,7 @@ The following providers are used by this module: - [[provider_null]] <> (>= 3) -- [[provider_argocd]] <> (>= 5) +- [[provider_argocd]] <> (>= 6) - [[provider_utils]] <> (>= 1) @@ -141,8 +141,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/hashicorp/aws/latest/docs/data-sources/iam_policy[aws_iam_policy.AmazonEFSCSIDriverPolicy] (data source) @@ -322,7 +322,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 |=== @@ -334,7 +334,7 @@ Description: ID to pass other modules in order to refer to this module as a depe |Name |Version |[[provider_utils]] <> |>= 1 |[[provider_aws]] <> |n/a -|[[provider_argocd]] <> |>= 5 +|[[provider_argocd]] <> |>= 6 |[[provider_null]] <> |>= 3 |=== @@ -351,8 +351,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/hashicorp/aws/latest/docs/data-sources/iam_policy[aws_iam_policy.AmazonEFSCSIDriverPolicy] |data source 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"