mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
Make terraform match prod RDS versions (#18621)
This commit is contained in:
parent
2ba0f01502
commit
27a4071a89
2 changed files with 3 additions and 1 deletions
|
|
@ -35,7 +35,8 @@ module "free" {
|
|||
subnets = module.main.vpc.database_subnets
|
||||
}
|
||||
redis_config = {
|
||||
name = local.customer_free
|
||||
name = local.customer_free
|
||||
engine_version = "8.0.mysql_aurora.3.05.2"
|
||||
log_delivery_configuration = [
|
||||
{
|
||||
destination = "dogfood-free-redis-logs"
|
||||
|
|
|
|||
|
|
@ -70,6 +70,7 @@ module "main" {
|
|||
}
|
||||
rds_config = {
|
||||
name = local.customer
|
||||
engine_version = "8.0.mysql_aurora.3.05.2"
|
||||
snapshot_identifier = "arn:aws:rds:us-east-2:611884880216:cluster-snapshot:a2023-03-06-pre-migration"
|
||||
db_parameters = {
|
||||
# 8mb up from 262144 (256k) default
|
||||
|
|
|
|||
Loading…
Reference in a new issue