From dfd36a09a28e122733ee788990c35219b122fa7d Mon Sep 17 00:00:00 2001 From: armin-x86 Date: Wed, 16 Jul 2025 06:42:44 +0300 Subject: [PATCH 1/2] fix: change engine default value to lowercse redis to avoid Terraform warning Signed-off-by: armin-x86 --- modules/user-group/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/user-group/variables.tf b/modules/user-group/variables.tf index d4d461e..252461b 100644 --- a/modules/user-group/variables.tf +++ b/modules/user-group/variables.tf @@ -23,7 +23,7 @@ variable "create_group" { variable "engine" { description = "The current supported value is `REDIS`" type = string - default = "REDIS" + default = "redis" } variable "user_group_id" { From 2ade2a39b63545e3318aa8e31127624fb8be482a Mon Sep 17 00:00:00 2001 From: Bryant Biggs Date: Mon, 21 Jul 2025 09:41:25 -0500 Subject: [PATCH 2/2] fix: Update pre-commit changes --- .pre-commit-config.yaml | 2 +- modules/user-group/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a6cd369..626bd79 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/antonbabenko/pre-commit-terraform - rev: v1.96.1 + rev: v1.99.5 hooks: - id: terraform_fmt - id: terraform_docs diff --git a/modules/user-group/README.md b/modules/user-group/README.md index 6e4305e..4525ab1 100644 --- a/modules/user-group/README.md +++ b/modules/user-group/README.md @@ -96,7 +96,7 @@ No modules. | [create\_group](#input\_create\_group) | Determines whether a user group will be created | `bool` | `true` | no | | [default\_user](#input\_default\_user) | A map of default user attributes | `any` | `{}` | no | | [default\_user\_id](#input\_default\_user\_id) | The ID of the default user | `string` | `"default"` | no | -| [engine](#input\_engine) | The current supported value is `REDIS` | `string` | `"REDIS"` | no | +| [engine](#input\_engine) | The current supported value is `REDIS` | `string` | `"redis"` | no | | [tags](#input\_tags) | A map of tags to add to all resources | `map(string)` | `{}` | no | | [user\_group\_id](#input\_user\_group\_id) | The ID of the user group | `string` | `""` | no | | [users](#input\_users) | A map of users to create | `any` | `{}` | no |