Skip to content

Commit 5d617a7

Browse files
Do not override the orchestratord version by default
1 parent 28e368d commit 5d617a7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

examples/simple/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ variable "operator_version" {
127127
variable "orchestratord_version" {
128128
description = "Version of the Materialize orchestrator to install"
129129
type = string
130-
default = "v0.130.4"
130+
default = null
131131
}
132132

133133
variable "materialize_instances" {

main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,9 +195,9 @@ locals {
195195
}
196196
}
197197
operator = {
198-
image = {
198+
image = var.orchestratord_version == null ? {} : {
199199
tag = var.orchestratord_version
200-
}
200+
},
201201
cloudProvider = {
202202
type = "aws"
203203
region = data.aws_region.current.name

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ variable "operator_namespace" {
325325
variable "orchestratord_version" {
326326
description = "Version of the Materialize orchestrator to install"
327327
type = string
328-
default = "v0.130.4"
328+
default = null
329329
}
330330

331331
variable "helm_values" {

0 commit comments

Comments
 (0)