Skip to content

Commit

Permalink
Deploy PR-30: Whitelabel
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Carlucci committed Oct 2, 2024
1 parent d9e6b19 commit 02ba1ed
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/pr-30--whitelabel.yml
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 }}

0 comments on commit 02ba1ed

Please sign in to comment.