-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Aaron Carlucci
committed
Oct 2, 2024
1 parent
d9e6b19
commit 02ba1ed
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Deploy PR 30 - Whitelabel | ||
|
||
on: | ||
push: | ||
branches: | ||
- feature/whitelabel | ||
|
||
permissions: | ||
id-token: write # This is required for requesting the JWT | ||
contents: read # This is required for actions/checkout | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy to pr-30 | ||
uses: ./.github/workflows/deploy.yml | ||
# Originally the workflow implementation was setup to use environment | ||
# variables configured in the Github repository settings. However, | ||
# after moving to a reusable action, it became ugly to pass those values | ||
# into the called action due to this bug: | ||
# | ||
# https://github.com/orgs/community/discussions/26671#discussioncomment-4295807 | ||
# | ||
# So now we're hardcoding the values here and using it as a manifest. Please see | ||
# commit 1ec7a0346abc04b73c03e35c0e228e9dba14300c for the previous implementation. | ||
with: | ||
aws_region: us-east-1 | ||
aws_replication_region: us-west-2 | ||
aws_s3_terraform_state_object_key: pull-requests/pr-30.tfstate | ||
dns_name: pr-30.aws-ecs-demo.carlucci.network | ||
environment_name: pr-30 | ||
vpc_cidr_index: 5 | ||
secrets: | ||
aws_assume_role_arn: ${{ secrets.AWS_ASSUME_ROLE_ARN }} | ||
aws_s3_terraform_state_bucket_name: ${{ secrets.AWS_S3_TERRAFORM_STATE_BUCKET_NAME }} |