From 1efc25d7cfab3b3809676856072b1fe0b60df88c Mon Sep 17 00:00:00 2001 From: Peter Baumgartner Date: Fri, 16 Sep 2022 15:37:32 -0600 Subject: [PATCH] Add new fargate capacity options https://aws.amazon.com/about-aws/whats-new/2022/09/aws-fargate-increases-compute-memory-resource-configurations-4x/ --- app/app.go | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/app/app.go b/app/app.go index bb9edd1..da5721e 100644 --- a/app/app.go +++ b/app/app.go @@ -204,6 +204,35 @@ var FargateSupportedConfigurations = []ECSSizeConfiguration{ {CPU: 4 * 1024, Memory: 28 * 1024}, {CPU: 4 * 1024, Memory: 29 * 1024}, {CPU: 4 * 1024, Memory: 30 * 1024}, + {CPU: 8 * 1024, Memory: 16 * 1024}, + {CPU: 8 * 1024, Memory: 20 * 1024}, + {CPU: 8 * 1024, Memory: 24 * 1024}, + {CPU: 8 * 1024, Memory: 28 * 1024}, + {CPU: 8 * 1024, Memory: 32 * 1024}, + {CPU: 8 * 1024, Memory: 36 * 1024}, + {CPU: 8 * 1024, Memory: 40 * 1024}, + {CPU: 8 * 1024, Memory: 44 * 1024}, + {CPU: 8 * 1024, Memory: 48 * 1024}, + {CPU: 8 * 1024, Memory: 52 * 1024}, + {CPU: 8 * 1024, Memory: 56 * 1024}, + {CPU: 8 * 1024, Memory: 60 * 1024}, + {CPU: 16 * 1024, Memory: 32 * 1024}, + {CPU: 16 * 1024, Memory: 40 * 1024}, + {CPU: 16 * 1024, Memory: 48 * 1024}, + {CPU: 16 * 1024, Memory: 56 * 1024}, + {CPU: 16 * 1024, Memory: 64 * 1024}, + {CPU: 16 * 1024, Memory: 72 * 1024}, + {CPU: 16 * 1024, Memory: 80 * 1024}, + {CPU: 16 * 1024, Memory: 88 * 1024}, + {CPU: 16 * 1024, Memory: 96 * 1024}, + {CPU: 16 * 1024, Memory: 104 * 1024}, + {CPU: 16 * 1024, Memory: 112 * 1024}, + {CPU: 16 * 1024, Memory: 120 * 1024}, + {CPU: 16 * 1024, Memory: 128 * 1024}, + {CPU: 16 * 1024, Memory: 136 * 1024}, + {CPU: 16 * 1024, Memory: 144 * 1024}, + {CPU: 16 * 1024, Memory: 152 * 1024}, + {CPU: 16 * 1024, Memory: 160 * 1024}, } func (a *App) IsReviewApp() bool {