Skip to content

Commit 593867b

Browse files
hard code region
1 parent 436be25 commit 593867b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/deploy-github-oidc.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,17 @@ jobs:
3737
--template-file .aws-sam/build/template.yaml \
3838
--s3-bucket razroo-make-bind-public \
3939
--s3-prefix makebind-github-oidc \
40+
--region us-east-1 \
4041
--output-template-file github-oidc-packaged.yaml
4142
4243
- name: Upload packaged template to S3
4344
run: |
4445
aws s3 cp github-oidc-packaged.yaml \
45-
s3://razroo-make-bind-public/github-oidc.yaml
46+
s3://razroo-make-bind-public/github-oidc.yaml \
47+
--region us-east-1
4648
4749
- name: Generate Quick Create URL
4850
run: |
49-
TEMPLATE_URL="https://razroo-make-bind-public.s3.amazonaws.com/github-oidc.yaml"
51+
TEMPLATE_URL="https://razroo-make-bind-public.s3.us-east-1.amazonaws.com/github-oidc.yaml"
5052
echo "Quick Create URL:"
51-
echo "https://console.aws.amazon.com/cloudformation/home#/stacks/quickcreate?templateURL=${TEMPLATE_URL}&stackName=MakebindGitHubOIDC&param_GitHubOrg=YOUR_GITHUB_ORG&param_RepositoryName=*"
53+
echo "https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=${TEMPLATE_URL}&stackName=MakebindGitHubOIDC&param_GitHubOrg=YOUR_GITHUB_ORG&param_RepositoryName=*"

0 commit comments

Comments
 (0)