Skip to content

Commit 0695d6a

Browse files
fix: Use lowercase form of default engine "redis" (#41)
Signed-off-by: armin-x86 <[email protected]> Co-authored-by: Bryant Biggs <[email protected]>
1 parent 98fe3b4 commit 0695d6a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/antonbabenko/pre-commit-terraform
3-
rev: v1.96.1
3+
rev: v1.99.5
44
hooks:
55
- id: terraform_fmt
66
- id: terraform_docs

modules/user-group/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ No modules.
9696
| <a name="input_create_group"></a> [create\_group](#input\_create\_group) | Determines whether a user group will be created | `bool` | `true` | no |
9797
| <a name="input_default_user"></a> [default\_user](#input\_default\_user) | A map of default user attributes | `any` | `{}` | no |
9898
| <a name="input_default_user_id"></a> [default\_user\_id](#input\_default\_user\_id) | The ID of the default user | `string` | `"default"` | no |
99-
| <a name="input_engine"></a> [engine](#input\_engine) | The current supported value is `REDIS` | `string` | `"REDIS"` | no |
99+
| <a name="input_engine"></a> [engine](#input\_engine) | The current supported value is `REDIS` | `string` | `"redis"` | no |
100100
| <a name="input_tags"></a> [tags](#input\_tags) | A map of tags to add to all resources | `map(string)` | `{}` | no |
101101
| <a name="input_user_group_id"></a> [user\_group\_id](#input\_user\_group\_id) | The ID of the user group | `string` | `""` | no |
102102
| <a name="input_users"></a> [users](#input\_users) | A map of users to create | `any` | `{}` | no |

modules/user-group/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ variable "create_group" {
2323
variable "engine" {
2424
description = "The current supported value is `REDIS`"
2525
type = string
26-
default = "REDIS"
26+
default = "redis"
2727
}
2828

2929
variable "user_group_id" {

0 commit comments

Comments
 (0)