You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add a new variable for configuring redis engine version
Why this change is being made:
- New Sidekiq versions require at lease redis 7.3 to run. We have it
hardcoded in this playbook at 6.x. I want to make it so we can change
an env var and upgrade our Redis version
What were the changes made to support this:
- Add a new variable to the redis-variables.tf
- Set the default to 7.x
- use the variable in redis.tf
* Update readme
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -29,10 +29,11 @@ module "production" {
29
29
postgres_max_allocated_storage = 128
30
30
31
31
# Redis
32
-
redis_enabled = true
33
-
redis_name = "example-production-blue"
34
-
redis_node_type = "cache.m6g.large"
35
-
redis_replica_count = 1
32
+
redis_enabled = true
33
+
redis_name = "example-production-blue"
34
+
redis_node_type = "cache.m6g.large"
35
+
redis_replica_count = 1
36
+
redis_engine_version = "7.x"
36
37
37
38
# S3
38
39
s3_enabled = true
@@ -178,6 +179,7 @@ module "production_v1" {
178
179
| <aname="input_redis_name"></a> [redis\_name](#input\_redis\_name)| Name of the ElastiCache instance for Redis |`string`|`null`| no |
179
180
| <aname="input_redis_node_type"></a> [redis\_node\_type](#input\_redis\_node\_type)| Node type for the ElastiCache instance for Redis |`string`|`null`| no |
180
181
| <aname="input_redis_replica_count"></a> [redis\_replica\_count](#input\_redis\_replica\_count)| Number of replicas for the Redis cluster |`number`|`null`| no |
| <aname="input_s3_bucket_name"></a> [s3\_bucket\_name](#input\_s3\_bucket\_name)| Name of the S3 bucket for this application |`string`|`null`| no |
182
184
| <aname="input_s3_enabled"></a> [s3\_enabled](#input\_s3\_enabled)| Set to true to enable creation of an S3 bucket |`bool`|`false`| no |
183
185
| <aname="input_s3_read_principals"></a> [s3\_read\_principals](#input\_s3\_read\_principals)| Additional principals able to read S3 data |`list(string)`|`[]`| no |
0 commit comments