File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ variable "operator_version" {
127
127
variable "orchestratord_version" {
128
128
description = " Version of the Materialize orchestrator to install"
129
129
type = string
130
- default = " v0.130.4 "
130
+ default = null
131
131
}
132
132
133
133
variable "materialize_instances" {
Original file line number Diff line number Diff line change @@ -195,9 +195,9 @@ locals {
195
195
}
196
196
}
197
197
operator = {
198
- image = {
198
+ image = var.orchestratord_version == null ? {} : {
199
199
tag = var.orchestratord_version
200
- }
200
+ },
201
201
cloudProvider = {
202
202
type = " aws"
203
203
region = data.aws_region.current.name
Original file line number Diff line number Diff line change @@ -325,7 +325,7 @@ variable "operator_namespace" {
325
325
variable "orchestratord_version" {
326
326
description = " Version of the Materialize orchestrator to install"
327
327
type = string
328
- default = " v0.130.4 "
328
+ default = null
329
329
}
330
330
331
331
variable "helm_values" {
You can’t perform that action at this time.
0 commit comments