From 6cdb8bc59f4c0fc4825db63b4f6adcf8393e8a33 Mon Sep 17 00:00:00 2001 From: LeVarez Date: Thu, 26 Sep 2024 12:43:48 +0200 Subject: [PATCH] update aws account number --- packages/stack/cdk.context.json | 4 ++-- packages/stack/src/stack.ts | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/stack/cdk.context.json b/packages/stack/cdk.context.json index 8f9b8516..1488beb2 100644 --- a/packages/stack/cdk.context.json +++ b/packages/stack/cdk.context.json @@ -12,12 +12,12 @@ "eu-west-1b", "eu-west-1c" ], - "availability-zones:account=335671600435:region=eu-west-1": [ + "availability-zones:account=354108918187:region=eu-west-1": [ "eu-west-1a", "eu-west-1b", "eu-west-1c" ], - "availability-zones:account=335671600435:region=eu-west-3": [ + "availability-zones:account=354108918187:region=eu-west-3": [ "eu-west-3a", "eu-west-3b", "eu-west-3c" diff --git a/packages/stack/src/stack.ts b/packages/stack/src/stack.ts index bc056a0b..6bb36912 100644 --- a/packages/stack/src/stack.ts +++ b/packages/stack/src/stack.ts @@ -142,7 +142,7 @@ const app = new App(); // created the SharedInfraStack with the VPC resource that we're going to share by making a variable const sharedInfra = new SharedInfraStack(app, 'MPAth-shared', { env: { - account: '335671600435', + account: '354108918187', region: 'eu-west-1' }, tags: { @@ -153,7 +153,7 @@ const sharedInfra = new SharedInfraStack(app, 'MPAth-shared', { new MpathStack(app, 'MPAth-production', { env: { - account: '335671600435', + account: '354108918187', region: 'eu-west-1' }, shared: sharedInfra, @@ -166,7 +166,7 @@ new MpathStack(app, 'MPAth-production', { new MpathStack(app, 'MPAth-staging', { env: { - account: '335671600435', + account: '354108918187', region: 'eu-west-1' }, shared: sharedInfra,