From 498f513c890985d22066e0375313bf6560fa941e Mon Sep 17 00:00:00 2001 From: Steve Teahan Date: Mon, 28 Mar 2022 10:22:21 -0400 Subject: [PATCH] Add max conns data for db.t3.medium and db.r4.large --- rds.go | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/rds.go b/rds.go index accf4e6..72b7780 100644 --- a/rds.go +++ b/rds.go @@ -39,6 +39,14 @@ var DBMaxConnections = map[string]map[string]int64{ "default.postgres13": 225, "default.postgres14": 225, }, + "db.t3.medium": map[string]int64{ + "default": 550, + "default.postgres10": 550, + "default.postgres11": 550, + "default.postgres12": 550, + "default.postgres13": 550, + "default.postgres14": 550, + }, "db.m3.medium": map[string]int64{ "default": 392, }, @@ -88,6 +96,9 @@ var DBMaxConnections = map[string]map[string]int64{ "default.postgres13": 5000, "default.postgres14": 5000, }, + "db.r4.large": map[string]int64{ + "default.mysql5.7": 1301, + }, "db.r4.4xlarge": map[string]int64{ "default.mysql5.7": 10410, },