Skip to content

Commit

Permalink
fix(argocd): allow passing heterogeneous extra elements
Browse files Browse the repository at this point in the history
  • Loading branch information
yann-soubeyrand committed Feb 11, 2022
1 parent d448afa commit 1552361
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions modules/argocd-helm/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ variable "target_revision" {

variable "extra_apps" {
description = "Extra Applications objects to deploy."
type = list(any)
type = any
default = []
}

variable "extra_app_projects" {
description = "Extra AppProjects objects to deploy."
type = list(any)
type = any
default = []
}

variable "extra_application_sets" {
description = "Extra ApplicationSets objects to deploy."
type = list(any)
type = any
default = []
}

Expand Down
6 changes: 3 additions & 3 deletions modules/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ variable "app_of_apps_values_overrides" {

variable "extra_apps" {
description = "Extra Applications objects to deploy."
type = list(any)
type = any
default = []
}

variable "extra_app_projects" {
description = "Extra AppProjects objects to deploy."
type = list(any)
type = any
default = []
}

variable "extra_application_sets" {
description = "Extra ApplicationSets objects to deploy."
type = list(any)
type = any
default = []
}

Expand Down

0 comments on commit 1552361

Please sign in to comment.