Skip to content
Merged
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
8 changes: 4 additions & 4 deletions terraform/rds-databases/instance.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ resource "aws_security_group" "rust_prod_db" {
from_port = 5432
to_port = 5432
protocol = "tcp"
cidr_blocks = ["159.69.58.186/32"]
description = "Connections from rustc-perf collection server"
cidr_blocks = ["144.76.186.39/32", "159.69.58.186/32"]
description = "Connections from rustc-perf collection servers"
}

tags = {
Expand All @@ -61,8 +61,8 @@ resource "aws_db_instance" "shared" {
backup_retention_period = 3
storage_type = "gp3"
engine = "postgres"
engine_version = "16.3"
instance_class = "db.t4g.micro"
engine_version = "16.8"
instance_class = "db.m7g.large"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that @Mark-Simulacrum bumped the instance some time ago. Not sure about the Postgres version upgrade.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

probably the db is configured in a way that aws automatically updates to the latest version of postgres (minor version updates only)

identifier = "shared"
username = "root"
password = random_password.shared_root.result
Expand Down