Skip to content

Commit

Permalink
Increase snapshot retention for rds in dogfood (#26454)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfairburn authored Feb 20, 2025
1 parent 5d9026b commit 15a19f8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
7 changes: 4 additions & 3 deletions infrastructure/dogfood/terraform/aws-tf-module/free.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ locals {
}

module "free" {
source = "github.com/fleetdm/fleet-terraform//byo-vpc?ref=tf-mod-byo-vpc-v1.12.1"
source = "github.com/fleetdm/fleet-terraform//byo-vpc?ref=tf-mod-byo-vpc-v1.13.0"
vpc_config = {
name = local.customer_free
vpc_id = module.main.vpc.vpc_id
Expand All @@ -32,8 +32,9 @@ module "free" {
sort_buffer_size = 8388608
}
# VPN
allowed_cidr_blocks = ["10.255.1.0/24", "10.255.2.0/24", "10.255.3.0/24"]
subnets = module.main.vpc.database_subnets
allowed_cidr_blocks = ["10.255.1.0/24", "10.255.2.0/24", "10.255.3.0/24"]
subnets = module.main.vpc.database_subnets
backup_retention_period = 30
}
redis_config = {
name = local.customer_free
Expand Down
5 changes: 3 additions & 2 deletions infrastructure/dogfood/terraform/aws-tf-module/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ locals {
}

module "main" {
source = "github.com/fleetdm/fleet-terraform?ref=tf-mod-root-v1.11.1"
source = "github.com/fleetdm/fleet-terraform?ref=tf-mod-root-v1.12.0"
certificate_arn = module.acm.acm_certificate_arn
vpc = {
name = local.customer
Expand All @@ -83,7 +83,8 @@ module "main" {
sort_buffer_size = 8388608
}
# VPN
allowed_cidr_blocks = ["10.255.1.0/24", "10.255.2.0/24", "10.255.3.0/24"]
allowed_cidr_blocks = ["10.255.1.0/24", "10.255.2.0/24", "10.255.3.0/24"]
backup_retention_period = 30
}
redis_config = {
name = local.customer
Expand Down

0 comments on commit 15a19f8

Please sign in to comment.