File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 6
6
}
7
7
}
8
8
operator = {
9
- image = {
9
+ image = var.orchestratord_version == null ? {} : {
10
10
tag = var.orchestratord_version
11
- }
11
+ },
12
12
cloudProvider = {
13
13
type = " aws"
14
14
region = data.aws_region.current.name
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ variable "helm_values" {
41
41
variable "orchestratord_version" {
42
42
description = " Version of the Materialize orchestrator to install"
43
43
type = string
44
- default = " v0.138.0 "
44
+ default = null
45
45
}
46
46
47
47
variable "operator_namespace" {
Original file line number Diff line number Diff line change @@ -50,9 +50,9 @@ module "operator" {
50
50
operator_namespace = var. operator_namespace
51
51
52
52
helm_values = {
53
- image = {
53
+ image = var.orchestratord_version == null ? {} : {
54
54
tag = var.orchestratord_version
55
- }
55
+ },
56
56
observability = {
57
57
podMetrics = {
58
58
enabled = true
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ variable "region" {
19
19
variable "orchestratord_version" {
20
20
description = " Version of the Materialize orchestrator to install"
21
21
type = string
22
- default = " v0.138.0 "
22
+ default = null
23
23
}
24
24
25
25
variable "instance_configs" {
You can’t perform that action at this time.
0 commit comments