Skip to content

Commit aa45a97

Browse files
committed
⚡ MarkSphere v1.0.9
변수명 수정
1 parent cc88b11 commit aa45a97

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export YOUTUBE_API_KEY=$(aws ssm get-parameter --name "/marksphere/youtube-api-k
1010
export AWS_ACCESS_KEY=$(aws ssm get-parameter --name "/marksphere/aws-access-key" --with-decryption --query "Parameter.Value" --output text)
1111
export AWS_SECRET_KEY=$(aws ssm get-parameter --name "/marksphere/aws-secret-key" --with-decryption --query "Parameter.Value" --output text)
1212
export REDIS_HOST=$(aws ssm get-parameter --name "/marksphere/redis-host" --with-decryption --query "Parameter.Value" --output text)
13-
export AWS_FUNCTION_NAME=$(aws ssm get-parameter --name "/marksphere/aws-function-name" --with-decryption --query "Parameter.Value" --output text)
13+
export LAMBDA_FUNCTION_NAME=$(aws ssm get-parameter --name "/marksphere/lambda-function-name" --with-decryption --query "Parameter.Value" --output text)
1414

1515
JAR_NAME=$(ls $REPOSITORY/build/libs/ | grep '.jar' | tail -n 1)
1616
JAR_PATH=$REPOSITORY/build/libs/$JAR_NAME

src/main/resources/application.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ aws.s3.secretAccessKey=${AWS_SECRET_KEY}
2525
aws.s3.bucket-name=socialbookmarking-bucket
2626

2727
# AWS Lambda
28-
aws.lambda.function-name=${AWS_FUNCTION_NAME}
28+
aws.lambda.function-name=${LAMBDA_FUNCTION_NAME}
2929

3030
spring.data.redis.host=${REDIS_HOST}
3131
spring.data.redis.port=6379

0 commit comments

Comments
 (0)