Skip to content
This repository was archived by the owner on Jun 26, 2024. It is now read-only.

Commit ec7706f

Browse files
committed
Update tempates to allow using different branch with Amplify
1 parent 3c25d0d commit ec7706f

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -x
44
[ -z "$AWS_DEFAULT_REGION" ] && echo "Please specify AWS_DEFAULT_REGION environment variable" && exit 1;
55

66
sam build --use-container
7-
sam deploy --guided
7+
sam deploy --guided --stack-name $STACK_NAME
88

99
export AWS_COGNITO_REGION=$AWS_DEFAULT_REGION
1010
export AWS_USER_POOLS_WEB_CLIENT_ID=`aws cloudformation describe-stacks --stack-name $STACK_NAME --query "Stacks[0].Outputs[?OutputKey=='CognitoClientID'].OutputValue" --output text`

template.yaml

+6-2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ Parameters:
3939
Repository:
4040
Type: String
4141
Description: GitHub Repository URL
42+
Branch:
43+
Type: String
44+
Description: GitHub Branch
45+
Default: master
4246
OauthToken:
4347
Type: String
4448
Description: GitHub Repository URL
@@ -349,15 +353,15 @@ Resources:
349353
AmplifyBranch:
350354
Type: AWS::Amplify::Branch
351355
Properties:
352-
BranchName: amplify-console
356+
BranchName: !Ref Branch
353357
AppId: !GetAtt AmplifyApp.AppId
354358
Description: Amplify Console Branch
355359
EnableAutoBuild: true
356360
Tags:
357361
- Key: Name
358362
Value: todo-amplify-console
359363
- Key: Branch
360-
Value: amplify-console
364+
Value: !Ref Branch
361365

362366
Outputs:
363367
# ServerlessRestApi is an implicit API created out of Events key under Serverless::Function

0 commit comments

Comments
 (0)