Skip to content

Commit

Permalink
fix(typo): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
briancaffey committed Apr 22, 2024
1 parent 08d99e9 commit 4167100
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ ad-hoc-app-delete-services:
export AWS_PAGER=''
aws ecs delete-service --cluster alpha-cluster --service alpha-web-ui --force
aws ecs delete-service --cluster alpha-cluster --service alpha-default-worker --force
aws ecs delete-service --cluster alpha-cluster --service alpha-redis --force
aws ecs delete-service --cluster alpha-cluster --service alpha-gunicorn --force
aws ecs delete-service --cluster alpha-cluster --service alpha-ecs-exec --force

ad-hoc-app-destroy: ad-hoc-app-delete-services
cdk destroy --app='./lib/examples/ad-hoc/index.js' -e ExampleAdHocAppStack
cdk destroy --verbose --app='./lib/examples/ad-hoc/index.js' -e ExampleAdHocAppStack
2 changes: 1 addition & 1 deletion packages/ecs-app-update/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ runs:
cluster: ${{ inputs.APP_ENV }}-cluster
service: ${{ inputs.APP_ENV }}-${{ inputs.CONTAINER_NAME }}
task-definition: ${{ steps.render-new-task-definition.outputs.task-definition }}

wait-for-service-stability: true
4 changes: 2 additions & 2 deletions src/examples/ad-hoc/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const domainName = process.env.DOMAIN_NAME || 'example.com';

const adHocBase = new AdHocBase(baseStack, 'AdHocBase', { certificateArn, domainName });

const addHocApp = new AdHocApp(appStack, 'AdHocApp', {
const adHocApp = new AdHocApp(appStack, 'AdHocApp', {
baseStackName: adHocBaseEnvName,
vpc: adHocBase.vpc,
alb: adHocBase.alb,
Expand All @@ -46,4 +46,4 @@ const addHocApp = new AdHocApp(appStack, 'AdHocApp', {
*/
Tags.of(adHocBase).add('base-env', adHocBaseEnvName);
Tags.of(adHocBase).add('ad-hoc', 'true');
Tags.of(addHocApp).add('app-env', adHocAppEnvName);
Tags.of(adHocApp).add('app-env', adHocAppEnvName);

0 comments on commit 4167100

Please sign in to comment.