-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DRAFT: CRUD API - DDB - EventPublisher #17
Open
jeastham1993
wants to merge
13
commits into
main
Choose a base branch
from
feature/crud-ddb-complete
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
40b74e6
Complete pattern updates
jeastham1993 5a15b22
Add event publishing
jeastham1993 dce59b4
Simplify post handler
jeastham1993 1f2b88b
Simplify put handler
jeastham1993 762b936
Remove unused deps
jeastham1993 d280fc0
Merge branch 'main' into feature/crud-ddb-complete
jeastham1993 2cf9766
Add SNS encryption
jeastham1993 8a0a2ee
Add unwrap or else
jeastham1993 ea4785b
Add unwrap or else
jeastham1993 b262d5e
Update comments
jeastham1993 bc07a36
Bump lambda_http to 0.11
jeastham1993 6af8e03
Update code structure
jeastham1993 f59f90c
Update template outputs
jeastham1993 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
# Dependencies | ||
/node_modules | ||
**/node_modules/* | ||
|
||
# Production | ||
/build | ||
**/cdk.out/* | ||
|
||
# Generated files | ||
.docusaurus | ||
|
6 changes: 3 additions & 3 deletions
6
templates/patterns/api-patterns/actix-on-lambda/samconfig.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
version = 0.1 | ||
[default.deploy.parameters] | ||
stack_name = "rocket-on-lambda" | ||
stack_name = "actix-on-lambda" | ||
resolve_s3 = true | ||
s3_prefix = "rocket-on-lambda" | ||
s3_prefix = "actix-on-lambda" | ||
region = "eu-west-1" | ||
profile = "dev" | ||
profile = "sandbox" | ||
capabilities = "CAPABILITY_IAM" | ||
image_repositories = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
templates/patterns/api-patterns/lambda-per-verb/samconfig.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
version = 0.1 | ||
[default.deploy.parameters] | ||
stack_name = "lambda-per-verb" | ||
resolve_s3 = true | ||
s3_prefix = "lambda-per-verb" | ||
region = "eu-west-1" | ||
profile = "sandbox" | ||
capabilities = "CAPABILITY_IAM" | ||
image_repositories = [] |
89 changes: 89 additions & 0 deletions
89
templates/patterns/api-patterns/lambda-per-verb/template.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
AWSTemplateFormatVersion: '2010-09-09' | ||
Transform: AWS::Serverless-2016-10-31 | ||
|
||
# More info about Globals: https://github.com/awslabs/serverless-application-model/blob/master/docs/globals.rst | ||
Globals: | ||
Function: | ||
Timeout: 3 | ||
|
||
Resources: | ||
GetByIdFunction: | ||
Type: AWS::Serverless::Function | ||
Properties: | ||
CodeUri: . | ||
Handler: bootstrap | ||
Runtime: provided.al2023 | ||
Architectures: | ||
- arm64 | ||
Events: | ||
Api: | ||
Type: HttpApi | ||
Properties: | ||
Path: /{id} | ||
Method: GET | ||
Metadata: | ||
BuildMethod: rust-cargolambda | ||
BuildProperties: | ||
Binary: get-by-id | ||
DeleteByIdFunction: | ||
Type: AWS::Serverless::Function | ||
Properties: | ||
CodeUri: . | ||
Handler: bootstrap | ||
Runtime: provided.al2023 | ||
Architectures: | ||
- arm64 | ||
Events: | ||
Api: | ||
Type: HttpApi | ||
Properties: | ||
Path: /{id} | ||
Method: DELETE | ||
Metadata: | ||
BuildMethod: rust-cargolambda | ||
BuildProperties: | ||
Binary: delete-by-id | ||
PostFunction: | ||
Type: AWS::Serverless::Function | ||
Properties: | ||
CodeUri: . | ||
Handler: bootstrap | ||
Runtime: provided.al2023 | ||
Architectures: | ||
- arm64 | ||
Events: | ||
Api: | ||
Type: HttpApi | ||
Properties: | ||
Path: / | ||
Method: POST | ||
Metadata: | ||
BuildMethod: rust-cargolambda | ||
BuildProperties: | ||
Binary: post | ||
PutByIdFunction: | ||
Type: AWS::Serverless::Function | ||
Properties: | ||
CodeUri: . | ||
Handler: bootstrap | ||
Runtime: provided.al2023 | ||
Architectures: | ||
- arm64 | ||
Events: | ||
Api: | ||
Type: HttpApi | ||
Properties: | ||
Path: /{id} | ||
Method: PUT | ||
Metadata: | ||
BuildMethod: rust-cargolambda | ||
BuildProperties: | ||
Binary: put-by-id | ||
|
||
Outputs: | ||
# ServerlessHttpApi is an implicit API created out of Events key under Serverless::Function | ||
# Find out more about other implicit resources you can reference within SAM | ||
# https://github.com/awslabs/serverless-application-model/blob/master/docs/internals/generated_resources.rst#api | ||
LambdaWebApi: | ||
Description: "API Gateway endpoint URL for Prod stage for Hello World function" | ||
Value: !Sub "https://${ServerlessHttpApi}.execute-api.${AWS::Region}.${AWS::URLSuffix}/" |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't complete yet is it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, its complete and works