From 0f506ea3e37a944d4338de5034be273e9318bfdc Mon Sep 17 00:00:00 2001 From: Bobby Iliev Date: Wed, 26 Feb 2025 21:15:16 +0200 Subject: [PATCH] Install the Materialize operator by default --- README.md | 2 +- variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1ab8eb4..1a9bf2f 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ The module has been tested with: | [environment](#input\_environment) | Environment name (e.g., prod, staging, dev) | `string` | n/a | yes | | [helm\_chart](#input\_helm\_chart) | Chart name from repository or local path to chart. For local charts, set the path to the chart directory. | `string` | `"materialize-operator"` | no | | [helm\_values](#input\_helm\_values) | Additional Helm values to merge with defaults | `any` | `{}` | no | -| [install\_materialize\_operator](#input\_install\_materialize\_operator) | Whether to install the Materialize operator | `bool` | `false` | no | +| [install\_materialize\_operator](#input\_install\_materialize\_operator) | Whether to install the Materialize operator | `bool` | `true` | no | | [install\_metrics\_server](#input\_install\_metrics\_server) | Whether to install the metrics-server for the Materialize Console | `bool` | `true` | no | | [kubernetes\_namespace](#input\_kubernetes\_namespace) | The Kubernetes namespace for the Materialize resources | `string` | `"materialize-environment"` | no | | [log\_group\_name\_prefix](#input\_log\_group\_name\_prefix) | Prefix for the CloudWatch log group name (will be combined with environment name) | `string` | `"materialize"` | no | diff --git a/variables.tf b/variables.tf index 572ffa4..2e6fb72 100644 --- a/variables.tf +++ b/variables.tf @@ -267,7 +267,7 @@ variable "log_group_name_prefix" { variable "install_materialize_operator" { description = "Whether to install the Materialize operator" type = bool - default = false + default = true } variable "helm_chart" {