From e64ac44ef746f58ab3160f7c32b48f915f7e28a0 Mon Sep 17 00:00:00 2001 From: mnlumi Date: Mon, 30 Oct 2023 10:32:32 -0400 Subject: [PATCH] Add required name arg for fargate template --- container-aws-typescript/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/container-aws-typescript/index.ts b/container-aws-typescript/index.ts index 8589f01d0..d5e969bd0 100644 --- a/container-aws-typescript/index.ts +++ b/container-aws-typescript/index.ts @@ -30,6 +30,7 @@ const service = new awsx.ecs.FargateService("service", { assignPublicIp: true, taskDefinitionArgs: { container: { + name: "app", image: image.imageUri, cpu: cpu, memory: memory,