Skip to content

Commit ffa11d8

Browse files
pass helm values
1 parent 9cf95fe commit ffa11d8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

examples/simple/main.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ module "materialize_infrastructure" {
8383
install_materialize_operator = true
8484
operator_version = var.operator_version
8585
orchestratord_version = var.orchestratord_version
86+
helm_values = var.helm_values
8687

8788
# Once the operator is installed, you can define your Materialize instances here.
8889
materialize_instances = var.materialize_instances
@@ -100,6 +101,7 @@ resource "random_password" "pass" {
100101
special = false
101102
}
102103

104+
103105
variable "namespace" {
104106
description = "Namespace for the resources. Used to prefix the names of the resources"
105107
type = string
@@ -147,6 +149,12 @@ variable "materialize_instances" {
147149
default = []
148150
}
149151

152+
variable "helm_values" {
153+
description = "Additional Helm values to merge with defaults"
154+
type = any
155+
default = {}
156+
}
157+
150158
# Outputs
151159
output "vpc_id" {
152160
description = "VPC ID"

0 commit comments

Comments
 (0)