Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions test/terraform/aws-temporary/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,12 @@ module "database" {
node_security_group_id = module.eks.node_security_group_id
tags = var.tags

# A throwaway test database needs no point-in-time recovery, and the module
# default of 7 days makes every teardown wait on deleting a week of automated
# backups: nightly 18272's destroy was still on the RDS instance after 55
# minutes against a 90 minute step budget.
backup_retention_period = 0

depends_on = [
module.eks,
module.networking,
Expand Down
6 changes: 6 additions & 0 deletions test/terraform/aws-upgrade/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,12 @@ module "database" {
node_security_group_id = module.eks.node_security_group_id
tags = var.tags

# A throwaway test database needs no point-in-time recovery, and the module
# default of 7 days makes every teardown wait on deleting a week of automated
# backups: nightly 18272's destroy was still on the RDS instance after 55
# minutes against a 90 minute step budget.
backup_retention_period = 0

depends_on = [
module.eks,
module.networking,
Expand Down
Loading