There was an error while loading. Please reload this page.
1 parent 8b4dbbf commit 084782fCopy full SHA for 084782f
1 file changed
terraform/rds-databases/instance.tf
@@ -46,8 +46,8 @@ resource "aws_security_group" "rust_prod_db" {
46
from_port = 5432
47
to_port = 5432
48
protocol = "tcp"
49
- cidr_blocks = ["159.69.58.186/32"]
50
- 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"
51
}
52
53
tags = {
@@ -61,8 +61,8 @@ resource "aws_db_instance" "shared" {
61
backup_retention_period = 3
62
storage_type = "gp3"
63
engine = "postgres"
64
- engine_version = "16.3"
65
- instance_class = "db.t4g.micro"
+ engine_version = "16.8"
+ instance_class = "db.m7g.large"
66
identifier = "shared"
67
username = "root"
68
password = random_password.shared_root.result
0 commit comments