Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase snapshot retention for rds in dogfood #26454

Merged
merged 1 commit into from
Feb 20, 2025
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
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
Loading