We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d82ba82 commit 630248dCopy full SHA for 630248d
_variables.tf
@@ -89,7 +89,6 @@ variable "mod_dependency" {
89
}
90
91
variable "settings" {
92
- type = map(any)
93
default = {}
94
description = "Additional settings which will be passed to the Helm chart values."
95
helm.tf
@@ -72,13 +72,8 @@ resource "helm_release" "velero" {
72
value = "plugins"
73
74
75
- dynamic "set" {
76
- for_each = var.settings
77
-
78
- content {
79
- name = set.key
80
- value = set.value
81
- }
82
+ values = [
+ yamlencode(var.settings)
+ ]
83
84
0 commit comments