Skip to content

Commit

Permalink
Merge pull request #8 from DNXLabs/encrypting_at_rest_redis
Browse files Browse the repository at this point in the history
encrypting at rest redis by default
  • Loading branch information
mvsnogueira-dnx authored Jun 7, 2024
2 parents 70743f3 + 15b1094 commit f2e70a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ module "cache_redis" {
|------|-------------|------|---------|:--------:|
| allow\_cidrs | List of CIDRs to allow connection to this DB | `list(string)` | `[]` | no |
| allow\_security\_group\_ids | List of Security Group IDs to allow connection to this Redis | `list(string)` | `[]` | no |
| at\_rest\_encryption\_enabled | n/a | `bool` | `false` | no |
| at\_rest\_encryption\_enabled | n/a | `bool` | `true` | no |
| automatic\_failover\_enabled | n/a | `bool` | `false` | no |
| create\_subnet\_group | Create a subnet group | `bool` | `false` | no |
| engine | n/a | `string` | n/a | yes |
Expand Down
2 changes: 1 addition & 1 deletion _variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ variable "automatic_failover_enabled" {

variable "at_rest_encryption_enabled" {
type = bool
default = false
default = true
}

variable "transit_encryption_enabled" {
Expand Down

0 comments on commit f2e70a5

Please sign in to comment.