Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/aws/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ locals {
}
}
operator = {
image = {
image = var.orchestratord_version == null ? {} : {
tag = var.orchestratord_version
}
},
cloudProvider = {
type = "aws"
region = data.aws_region.current.name
Expand Down
2 changes: 1 addition & 1 deletion examples/aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ variable "helm_values" {
variable "orchestratord_version" {
description = "Version of the Materialize orchestrator to install"
type = string
default = "v0.138.0"
default = null
}

variable "operator_namespace" {
Expand Down
4 changes: 2 additions & 2 deletions examples/gcp/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ module "operator" {
operator_namespace = var.operator_namespace

helm_values = {
image = {
image = var.orchestratord_version == null ? {} : {
tag = var.orchestratord_version
}
},
observability = {
podMetrics = {
enabled = true
Expand Down
2 changes: 1 addition & 1 deletion examples/gcp/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ variable "region" {
variable "orchestratord_version" {
description = "Version of the Materialize orchestrator to install"
type = string
default = "v0.138.0"
default = null
}

variable "instance_configs" {
Expand Down