Skip to content

add rustc-perf-one to bastion allow list #742

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

Merged
merged 1 commit into from
Jun 20, 2025
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
@@ -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 = {
@@ -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