Skip to content

Commit

Permalink
Merge pull request #63 from nao1215/chore/rename-dir
Browse files Browse the repository at this point in the history
Rename directory name
  • Loading branch information
nao1215 authored Feb 10, 2024
2 parents bfabb1d + bbe0f62 commit aad23c3
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ The s3hub command provides following features:
|Name|README|implementation|
|:--|:--|:--|
|[Lambda batch with EventBridge (CloudWatch Events)](./cloudformation/lambda-batch/README.md)||100%|
|[Lambda with API Gateway](./cloudformation/api-gateway-with-lambda/README.md)||100%|
|[Lambda with API Gateway](./cloudformation/lambda-with-api-gw/README.md)||100%|
|[CloudWatch Real User Monitoring (RUM)](./cloudformation/cloudwatch-rum/README.md)||100%|


Expand Down
1 change: 1 addition & 0 deletions cloudformation/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ help: ## Show this help
deploy: ## Deploy CloudFormation Template
cd static-web-site-distribution && make test-deploy || { echo "Deployment of static-web-site-distribution failed"; exit 1; }
cd lambda-batch && make test-deploy || { echo "Deployment of lambda-batch failed"; exit 1; }
cd lambda-with-api-gw && make test-deploy || { echo "Deployment of lambda-with-api-gw failed"; exit 1; }
cd cloudwatch-rum && make test-deploy || { echo "Deployment of cloudwatch-rum failed"; exit 1; }
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.DEFAULT_GOAL := help

BINARY_NAME = bootstrap
AWS_STACK_NAME = lambda-batch
AWS_STACK_NAME = lambda-with-api-gw
TEMPLATE_FILE = template.yml

.PHONY: help clean dependency_check build deploy
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## API Gateway with Lambda
## Lambda with API Gateway
### Overview

Lambda and API Gateway combined infrastructure is a powerful means for realizing serverless architecture. Lambda is a service for executing code, while API Gateway creates HTTP endpoints and forwards requests to Lambda functions.
Expand Down
File renamed without changes.

0 comments on commit aad23c3

Please sign in to comment.