Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

Commit 7219290

Browse files
committed
build fix
1 parent eb9d3ac commit 7219290

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ build_steps: &build_steps
4646
command: |
4747
./awsconfiguration.sh $DEPLOY_ENV
4848
source awsenvconf
49-
./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${APPNAME}-appvar,${LOGICAL_ENV}-${APPNAME}-deployvar
49+
./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${APPNAME}-deployvar
5050
source buildenvvar
51-
./master_deploy.sh -d LAMBDA -e $DEPLOY_ENV
51+
./master_deploy.sh -d LAMBDA -e $DEPLOY_ENV -s ${LOGICAL_ENV}-${APPNAME}-appvar
5252
#-s ${LOGICAL_ENV}-${APPNAME}-appvar
5353
jobs:
5454
# Build & Deploy against development backend rera212

serverless.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@ service: lambda-member-v5user-skill-sync
22
provider:
33
name: aws
44
stage: ${opt:stage, 'dev'}
5-
vpc:
6-
securityGroupIds:
7-
- ${file(./config/${self:provider.stage}.json):VPC_SECURITY_GROUP_ID_1}
8-
- ${file(./config/${self:provider.stage}.json):VPC_SECURITY_GROUP_ID_2}
9-
subnetIds:
10-
- ${file(./config/${self:provider.stage}.json):VPC_SUBNET_ID_1}
115
role: ${file(./config/${self:provider.stage}.json):LAMBDA_ROLE}
126
runtime: nodejs12.x
137
memorySize: 256
@@ -19,7 +13,7 @@ provider:
1913

2014
functions:
2115
handler:
22-
handler: lambda.handler
16+
handler: index.syncSkills
2317
name: member-v5user-skill-sync # optional, Deployed Lambda name
2418
description: Auth0 proxy server # The description of your function.
2519
events:

0 commit comments

Comments
 (0)