Skip to content

Commit

Permalink
Rename stack for better project conformance
Browse files Browse the repository at this point in the history
  • Loading branch information
alukach committed Oct 31, 2024
1 parent ec74edb commit 407adf7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Get ConfigLambdaArn from CloudFormation
id: get-lambda-arn
run: |
echo "CONFIG_LAMBDA_ARN=$(jq -r '."VedaKeycloakStack-${{ vars.STAGE }}".ConfigLambdaArn' outputs.json)" >> $GITHUB_ENV
echo "CONFIG_LAMBDA_ARN=$(jq -r '."veda-keycloak-${{ vars.STAGE }}".ConfigLambdaArn' outputs.json)" >> $GITHUB_ENV
- name: Run Apply Config
run: npm run apply-config $CONFIG_LAMBDA_ARN
2 changes: 1 addition & 1 deletion deploy/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ privateOauthClients.length
: console.warn(`No client IDs found in ${CONFIG_DIR}`);

const app = new cdk.App();
new KeycloakStack(app, `VedaKeycloakStack-${STAGE}`, {
new KeycloakStack(app, `veda-keycloak-${STAGE}`, {
/* If you don't specify 'env', this stack will be environment-agnostic.
* Account/Region-dependent features and context lookups will not work,
* but a single synthesized template can be deployed anywhere. */
Expand Down

0 comments on commit 407adf7

Please sign in to comment.