Skip to content

Commit

Permalink
ROX-16099: new DBs will use a LTS aurora-postgresql version (#900)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladbologa authored Mar 22, 2023
1 parent 8672572 commit ed8b46c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fleetshard/pkg/central/cloudprovider/awsclient/rds.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ const (

// DB cluster / instance configuration parameters
dbEngine = "aurora-postgresql"
dbEngineVersion = "13.7"
dbEngineVersion = "13.9" // 13.9 is a LTS Aurora PostgreSQL version
dbAutoVersionUpgrade = false // disable auto upgrades while on LTS version (see ROX-16099)
dbInstanceClass = "db.serverless"
dbPostgresPort = 5432
dbName = "postgres"
Expand Down Expand Up @@ -348,6 +349,7 @@ func newCreateCentralDBInstanceInput(clusterID, instanceID, dataplaneClusterName
EnablePerformanceInsights: aws.Bool(performanceInsights),
PromotionTier: aws.Int64(dbInstancePromotionTier),
CACertificateIdentifier: aws.String(dbCACertificateType),
AutoMinorVersionUpgrade: aws.Bool(dbAutoVersionUpgrade),
Tags: []*rds.Tag{
{
Key: aws.String(dataplaneClusterNameKey),
Expand Down

0 comments on commit ed8b46c

Please sign in to comment.