Skip to content

Commit

Permalink
feat!: point the Argo CD provider to the new repository (#39)
Browse files Browse the repository at this point in the history
* feat!: point the Argo CD provider to the new repository

* docs(terraform-docs): generate docs and write to README.adoc

---------

Co-authored-by: lentidas <[email protected]>
  • Loading branch information
lentidas and lentidas authored Oct 9, 2024
1 parent 73288c1 commit 8b9453e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
26 changes: 13 additions & 13 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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]] <<requirement_argocd,argocd>> (>= 5)
- [[requirement_argocd]] <<requirement_argocd,argocd>> (>= 6)

- [[requirement_null]] <<requirement_null,null>> (>= 3)

Expand All @@ -76,11 +76,11 @@ The following requirements are needed by this module:

The following providers are used by this module:

- [[provider_utils]] <<provider_utils,utils>> (>= 1)
- [[provider_null]] <<provider_null,null>> (>= 3)

- [[provider_argocd]] <<provider_argocd,argocd>> (>= 5)
- [[provider_argocd]] <<provider_argocd,argocd>> (>= 6)

- [[provider_null]] <<provider_null,null>> (>= 3)
- [[provider_utils]] <<provider_utils,utils>> (>= 1)

=== Modules

Expand All @@ -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)
Expand Down Expand Up @@ -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]] <<input_helm_values,helm_values>>

Expand Down Expand Up @@ -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]] <<requirement_argocd,argocd>> |>= 5
|[[requirement_argocd]] <<requirement_argocd,argocd>> |>= 6
|[[requirement_null]] <<requirement_null,null>> |>= 3
|[[requirement_utils]] <<requirement_utils,utils>> |>= 1
|===
Expand All @@ -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]] <<provider_null,null>> |>= 3
|[[provider_argocd]] <<provider_argocd,argocd>> |>= 5
|[[provider_argocd]] <<provider_argocd,argocd>> |>= 6
|[[provider_utils]] <<provider_utils,utils>> |>= 1
|[[provider_null]] <<provider_null,null>> |>= 3
|===
= Modules
Expand All @@ -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
Expand Down Expand Up @@ -345,7 +345,7 @@ Description: ID to pass other modules in order to refer to this module as a depe
|[[input_target_revision]] <<input_target_revision,target_revision>>
|Override of target revision of the application chart.
|`string`
|`"v3.4.0"`
|`"v3.6.0"`
|no
|[[input_helm_values]] <<input_helm_values,helm_values>>
Expand Down
4 changes: 2 additions & 2 deletions terraform.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
terraform {
required_providers {
argocd = {
source = "oboukili/argocd"
version = ">= 5"
source = "argoproj-labs/argocd"
version = ">= 6"
}
utils = {
source = "cloudposse/utils"
Expand Down

0 comments on commit 8b9453e

Please sign in to comment.