Skip to content

Commit

Permalink
fix: fix aws deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
qoomon committed Jul 15, 2024
1 parent a2ab31c commit 207fb77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/deployments/aws/infrastructure/lib/app-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class AppStack extends Stack {
handler: 'index.handler',
memorySize: 128,
timeout: Duration.seconds(30),
code: lambda.Code.fromAsset(path.join(__dirname, '../../../../../dist')),
code: lambda.Code.fromAsset(path.join(__dirname, '../../../../dist')),
environment: {
LOG_LEVEL: 'INFO',
GITHUB_APP_SECRETS_NAME: githubAppSecret.secretName,
Expand Down Expand Up @@ -66,7 +66,7 @@ export class AppStack extends Stack {

// --- Outputs -------------------------------------------------------------------------------------------------

new CfnOutput(this, 'GitHubAppSecret', {value: githubAppSecret.secretName})
new CfnOutput(this, 'GitHubAppSecretName', {value: githubAppSecret.secretName})

new CfnOutput(this, 'ApiRegion', {value: httpApiAccessTokenFunctionUrl.stack.region})
new CfnOutput(this, 'ApiAccessRoleArn', {value: httpApiAccessRole.roleArn})
Expand Down

0 comments on commit 207fb77

Please sign in to comment.