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
2 changes: 1 addition & 1 deletion fleetshard/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ type ManagedDB struct {
SecurityGroup string `env:"MANAGED_DB_SECURITY_GROUP"`
SubnetGroup string `env:"MANAGED_DB_SUBNET_GROUP"`
PerformanceInsights bool `env:"MANAGED_DB_PERFORMANCE_INSIGHTS" envDefault:"false"`
EngineVersion string `env:"MANAGED_DB_ENGINE_VERSION" envDefault:"13.9"` // See AWS RDS release calendar: https://docs.aws.amazon.com/AmazonRDS/latest/PostgreSQLReleaseNotes/postgresql-release-calendar.html
EngineVersion string `env:"MANAGED_DB_ENGINE_VERSION" envDefault:"15.10"` // See AWS Aurora PostgreSQL release calendar: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraPostgreSQLReleaseNotes/aurorapostgresql-release-calendar.html
AutoVersionUpgrade bool `env:"MANAGED_DB_AUTO_VERSION_UPGRADE" envDefault:"false"` // minor version upgrades only. Disable until figure out the strategy. s\See: ROX-16099
BackupRetentionPeriod int32 `env:"MANAGED_DB_BACKUP_RETENTION_PERIOD" envDefault:"30"` // days
ClusterParameterGroup string `env:"MANAGED_DB_CLUSTER_PARAMETER_GROUP"` // if empty, the default parameter group for the engine version will be used
Expand Down
2 changes: 1 addition & 1 deletion fleetshard/pkg/central/cloudprovider/awsclient/rds_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func newTestRDS() (*RDS, error) {
cfg.SecurityGroup = os.Getenv("MANAGED_DB_SECURITY_GROUP")
cfg.SubnetGroup = os.Getenv("MANAGED_DB_SUBNET_GROUP")
cfg.BackupRetentionPeriod = 1
cfg.EngineVersion = "13.9"
cfg.EngineVersion = "15.10"
cfg.MinCapacityACU = 0.5
cfg.MaxCapacityACU = 1

Expand Down
Loading