Skip to content

Commit

Permalink
update aws account number
Browse files Browse the repository at this point in the history
  • Loading branch information
LeVarez committed Sep 26, 2024
1 parent d67a0a4 commit 6cdb8bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/stack/cdk.context.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions packages/stack/src/stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand All @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit 6cdb8bc

Please sign in to comment.