This repository was archived by the owner on Jun 26, 2024. It is now read-only.
File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 4
4
[ -z " $AWS_DEFAULT_REGION " ] && echo " Please specify AWS_DEFAULT_REGION environment variable" && exit 1;
5
5
6
6
sam build --use-container
7
- sam deploy --guided
7
+ sam deploy --guided --stack-name $STACK_NAME
8
8
9
9
export AWS_COGNITO_REGION=$AWS_DEFAULT_REGION
10
10
export AWS_USER_POOLS_WEB_CLIENT_ID=` aws cloudformation describe-stacks --stack-name $STACK_NAME --query " Stacks[0].Outputs[?OutputKey=='CognitoClientID'].OutputValue" --output text`
Original file line number Diff line number Diff line change @@ -39,6 +39,10 @@ Parameters:
39
39
Repository :
40
40
Type : String
41
41
Description : GitHub Repository URL
42
+ Branch :
43
+ Type : String
44
+ Description : GitHub Branch
45
+ Default : master
42
46
OauthToken :
43
47
Type : String
44
48
Description : GitHub Repository URL
@@ -349,15 +353,15 @@ Resources:
349
353
AmplifyBranch :
350
354
Type : AWS::Amplify::Branch
351
355
Properties :
352
- BranchName : amplify-console
356
+ BranchName : !Ref Branch
353
357
AppId : !GetAtt AmplifyApp.AppId
354
358
Description : Amplify Console Branch
355
359
EnableAutoBuild : true
356
360
Tags :
357
361
- Key : Name
358
362
Value : todo-amplify-console
359
363
- Key : Branch
360
- Value : amplify-console
364
+ Value : !Ref Branch
361
365
362
366
Outputs :
363
367
# ServerlessRestApi is an implicit API created out of Events key under Serverless::Function
You can’t perform that action at this time.
0 commit comments