Skip to content

Commit

Permalink
fix(cdk): use eu-west-1 region
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed Jun 19, 2023
1 parent 4e09e6b commit 2e664bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,5 @@ Store the stack name and the region as a variable:

```bash
gh variable set STACK_NAME --env production --body "${STACK_NAME:-hello-nrfcloud-web}"
gh variable set AWS_REGION --env production --body "eu-central-1"
gh variable set AWS_REGION --env production --body "eu-west-1"
```
2 changes: 1 addition & 1 deletion cdk/hosting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ new HostingApp(stackName, {
domainName !== undefined && certificateId !== undefined
? { certificateId, domainName }
: undefined,
region: process.env.AWS_REGION ?? 'eu-central-1',
region: process.env.AWS_REGION ?? 'eu-west-1',
gitHubOICDProviderArn: await ensureGitHubOIDCProvider({
iam,
}),
Expand Down
2 changes: 1 addition & 1 deletion cdk/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ for (const [k, v] of Object.entries({

new MapApp(stackName, {
domainName,
region: process.env.AWS_REGION ?? 'eu-central-1',
region: process.env.AWS_REGION ?? 'eu-west-1',
})

0 comments on commit 2e664bb

Please sign in to comment.