Skip to content

Commit a4c24af

Browse files
committed
Default to the version of the helm chart
1 parent 478b8b3 commit a4c24af

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The module has been tested with:
3232
| <a name="module_database"></a> [database](#module\_database) | ./modules/database | n/a |
3333
| <a name="module_eks"></a> [eks](#module\_eks) | ./modules/eks | n/a |
3434
| <a name="module_networking"></a> [networking](#module\_networking) | ./modules/networking | n/a |
35-
| <a name="module_operator"></a> [operator](#module\_operator) | github.com/MaterializeInc/terraform-helm-materialize | v0.1.5 |
35+
| <a name="module_operator"></a> [operator](#module\_operator) | github.com/MaterializeInc/terraform-helm-materialize | v0.1.6 |
3636
| <a name="module_storage"></a> [storage](#module\_storage) | ./modules/storage | n/a |
3737

3838
## Resources
@@ -88,7 +88,7 @@ The module has been tested with:
8888
| <a name="input_node_group_max_size"></a> [node\_group\_max\_size](#input\_node\_group\_max\_size) | Maximum number of worker nodes | `number` | `4` | no |
8989
| <a name="input_node_group_min_size"></a> [node\_group\_min\_size](#input\_node\_group\_min\_size) | Minimum number of worker nodes | `number` | `1` | no |
9090
| <a name="input_operator_namespace"></a> [operator\_namespace](#input\_operator\_namespace) | Namespace for the Materialize operator | `string` | `"materialize"` | no |
91-
| <a name="input_operator_version"></a> [operator\_version](#input\_operator\_version) | Version of the Materialize operator to install | `string` | `"v25.1.0"` | no |
91+
| <a name="input_operator_version"></a> [operator\_version](#input\_operator\_version) | Version of the Materialize operator to install | `string` | `null` | no |
9292
| <a name="input_orchestratord_version"></a> [orchestratord\_version](#input\_orchestratord\_version) | Version of the Materialize orchestrator to install | `string` | `"v0.130.1"` | no |
9393
| <a name="input_postgres_version"></a> [postgres\_version](#input\_postgres\_version) | Version of PostgreSQL to use | `string` | `"15"` | no |
9494
| <a name="input_private_subnet_cidrs"></a> [private\_subnet\_cidrs](#input\_private\_subnet\_cidrs) | CIDR blocks for private subnets | `list(string)` | <pre>[<br/> "10.0.1.0/24",<br/> "10.0.2.0/24",<br/> "10.0.3.0/24"<br/>]</pre> | no |

main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ module "database" {
7979
}
8080

8181
module "operator" {
82-
source = "github.com/MaterializeInc/terraform-helm-materialize?ref=v0.1.5"
82+
source = "github.com/MaterializeInc/terraform-helm-materialize?ref=v0.1.6"
8383

8484
count = var.install_materialize_operator ? 1 : 0
8585

@@ -93,7 +93,7 @@ module "operator" {
9393

9494
namespace = var.namespace
9595
environment = var.environment
96-
operator_version = var.operator_version
96+
operator_version = try(var.operator_version, null)
9797
operator_namespace = var.operator_namespace
9898

9999
helm_values = local.merged_helm_values

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ variable "use_local_chart" {
281281
variable "operator_version" {
282282
description = "Version of the Materialize operator to install"
283283
type = string
284-
default = "v25.1.0"
284+
default = null
285285
}
286286

287287
variable "operator_namespace" {

0 commit comments

Comments
 (0)