Skip to content

Commit

Permalink
feat: use make command to list resources
Browse files Browse the repository at this point in the history
  • Loading branch information
maxhoheiser committed Mar 25, 2024
1 parent 50721fc commit d590f14
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,7 @@ jobs:
- name: List the resources
run: |
awslocal s3 ls
awslocal kinesis list-streams
awslocal firehose list-delivery-streams
awslocal redshift describe-clusters
list-ressources-localstack
- name: Run pytests
run: |
Expand Down
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ deploy-localstack:
@echo "Deploy firehose stack"
cdklocal deploy KinesisFirehoseRedshiftStack2 --require-approval never

list-ressources-localstack:
@echo "List resources"
awslocal s3 ls
awslocal kinesis list-streams
awslocal firehose list-delivery-streams
awslocal redshift describe-clusters

deploy-aws:
@echo "Preparing deployment"
cdk bootstrap
Expand Down

0 comments on commit d590f14

Please sign in to comment.