This commit is contained in:
Piyush Jain
2025-03-27 17:00:49 +05:30
committed by GitHub
parent 2f64b202c1
commit ef41f35209
2 changed files with 10 additions and 3 deletions

View File

@@ -6,9 +6,13 @@ on:
push:
branches:
- main
paths:
- "infra/terraform/**"
pull_request:
branches:
- main
paths:
- "infra/terraform/**"
permissions:
id-token: write

View File

@@ -42,14 +42,17 @@ module "rds-aurora" {
}
performance_insights_enabled = true
apply_immediately = true
skip_final_snapshot = true
backup_retention_period = 7
apply_immediately = true
skip_final_snapshot = false
deletion_protection = true
enable_http_endpoint = true
serverlessv2_scaling_configuration = {
min_capacity = 0
max_capacity = 10
max_capacity = 50
seconds_until_auto_pause = 3600
}