File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ module "materialize_infrastructure" {
83
83
install_materialize_operator = true
84
84
operator_version = var. operator_version
85
85
orchestratord_version = var. orchestratord_version
86
+ helm_values = var. helm_values
86
87
87
88
# Once the operator is installed, you can define your Materialize instances here.
88
89
materialize_instances = var. materialize_instances
@@ -100,6 +101,7 @@ resource "random_password" "pass" {
100
101
special = false
101
102
}
102
103
104
+
103
105
variable "namespace" {
104
106
description = " Namespace for the resources. Used to prefix the names of the resources"
105
107
type = string
@@ -147,6 +149,12 @@ variable "materialize_instances" {
147
149
default = []
148
150
}
149
151
152
+ variable "helm_values" {
153
+ description = " Additional Helm values to merge with defaults"
154
+ type = any
155
+ default = {}
156
+ }
157
+
150
158
# Outputs
151
159
output "vpc_id" {
152
160
description = " VPC ID"
You can’t perform that action at this time.
0 commit comments