From 2ed99a92f5cca8a32e6e9fce581559b60416fb20 Mon Sep 17 00:00:00 2001 From: Torian Crane Date: Mon, 28 Aug 2023 19:01:09 +0200 Subject: [PATCH 1/3] Added name arg --- aws-ts-containers/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/aws-ts-containers/index.ts b/aws-ts-containers/index.ts index 2a8b1c8bb..360e0ac8c 100644 --- a/aws-ts-containers/index.ts +++ b/aws-ts-containers/index.ts @@ -27,6 +27,7 @@ const service = new awsx.ecs.FargateService("service", { assignPublicIp: true, taskDefinitionArgs: { container: { + name: "awsx-ecs", image: image.imageUri, cpu: 128, memory: 512, From 931aedce1f4a36d0e35a1459d198e138f2eff407 Mon Sep 17 00:00:00 2001 From: Torian Crane Date: Mon, 28 Aug 2023 20:10:24 +0200 Subject: [PATCH 2/3] Added link to supported Fargate regions --- aws-ts-containers/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws-ts-containers/README.md b/aws-ts-containers/README.md index bdf98b050..7706a586f 100644 --- a/aws-ts-containers/README.md +++ b/aws-ts-containers/README.md @@ -19,7 +19,7 @@ with `***`. $ pulumi stack init containers-dev ``` -1. Configure Pulumi to use an AWS region that supports Fargate. This is currently only available in `us-east-1`, `us-east-2`, `us-west-2`, and `eu-west-1`: +1. Configure Pulumi to use an AWS region that supports Fargate (you can view a list of supported regions in the [AWS documentation](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/AWS_Fargate-Regions.html)): ``` $ pulumi config set aws:region us-west-2 From d4a8594cb1526f269ee76391d790d04311fec6d9 Mon Sep 17 00:00:00 2001 From: Torian Crane Date: Thu, 7 Sep 2023 09:04:10 +0000 Subject: [PATCH 3/3] fixed name value --- aws-ts-containers/index.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/aws-ts-containers/index.ts b/aws-ts-containers/index.ts index 4fb857bfe..648d1083e 100644 --- a/aws-ts-containers/index.ts +++ b/aws-ts-containers/index.ts @@ -27,11 +27,7 @@ const service = new awsx.ecs.FargateService("service", { assignPublicIp: true, taskDefinitionArgs: { container: { -<<<<<<< HEAD - name: "awsx-ecs", -======= name: "service-container", ->>>>>>> 26ffb4bb327f00457796c96676e7db5e25e2bbd6 image: image.imageUri, cpu: 128, memory: 512,