We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d92de7 commit d9e7a7aCopy full SHA for d9e7a7a
1 file changed
hack/deploy-ide-cfn.sh
@@ -10,5 +10,13 @@ outfile=$(mktemp)
10
11
bash $SCRIPT_DIR/build-ide-cfn.sh $outfile
12
13
+REPOSITORY_OWNER=${REPOSITORY_OWNER:-"aws-samples"}
14
+REPOSITORY_NAME=${REPOSITORY_NAME:-"eks-workshop-v2"}
15
+REPOSITORY_REF=${REPOSITORY_REF:-"main"}
16
+
17
aws cloudformation deploy --stack-name "$EKS_CLUSTER_NAME-ide" \
- --capabilities CAPABILITY_NAMED_IAM --disable-rollback --template-file $outfile
18
+ --capabilities CAPABILITY_NAMED_IAM --disable-rollback --template-file $outfile \
19
+ --parameter-overrides \
20
+ RepositoryOwner="$REPOSITORY_OWNER" \
21
+ RepositoryName="$REPOSITORY_NAME" \
22
+ RepositoryRef="$REPOSITORY_REF"
0 commit comments