From 2971c4ec3fbeca3e9da0eadb01b04c830ff3dde1 Mon Sep 17 00:00:00 2001 From: Roi Kramer Date: Tue, 9 Jul 2024 15:50:19 +0300 Subject: [PATCH] fix: Change 'enable_csr_approval' to be true by default (#31) --- CHANGELOG.md | 2 ++ README.md | 2 +- variables.tf | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f86215f..049ab75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ ## [Unreleased] +- fix: Change 'enable_csr_approval' to be true by default +- chore: Update changelog for refs/heads/main ([#30](https://github.com/spotinst/terraform-ocean-kubernetes-controller/issues/30)) diff --git a/README.md b/README.md index bcf03ad..68965ff 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ module "kubernetes-controller" { | [deploy\_metrics\_server](#input\_deploy\_metrics\_server) | Controls whether the metrics server should be deployed | `bool` | `false` | no | | [disable\_auto\_update](#input\_disable\_auto\_update) | Controls whether the auto-update feature should be disabled | `bool` | `true` | no | | [disable\_rightsizing](#input\_disable\_rightsizing) | Controls whether the rightsizing feature should be disabled | `bool` | `false` | no | -| [enable\_csr\_approval](#input\_enable\_csr\_approval) | Controls whether the CSR approval feature should be enabled | `bool` | `false` | no | +| [enable\_csr\_approval](#input\_enable\_csr\_approval) | Controls whether the CSR approval feature should be enabled | `bool` | `true` | no | | [image\_pull\_policy](#input\_image\_pull\_policy) | Specifies the image pull policy (one of: Always, Never, IfNotPresent) | `string` | `"Always"` | no | | [image\_pull\_secrets](#input\_image\_pull\_secrets) | Specifies a list of references to secrets in the same namespace to use for pulling the image | `list(string)` | `[]` | no | | [namespace](#input\_namespace) | Specifies the namespace where the Ocean Controller should be deployed | `string` | `"spot-system"` | no | diff --git a/variables.tf b/variables.tf index 7b71f06..a5fef00 100644 --- a/variables.tf +++ b/variables.tf @@ -87,7 +87,7 @@ variable "proxy_url" { variable "enable_csr_approval" { type = bool description = "Controls whether the CSR approval feature should be enabled" - default = false + default = true } variable "disable_auto_update" {