-
Notifications
You must be signed in to change notification settings - Fork 90
chore: V2 update from main #1365
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
Merged
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
bd03d76
build(deps): bump aws.sdk.version from 2.20.119 to 2.20.120 (#1349)
dependabot[bot] c5725d1
build(deps-dev): bump software.amazon.awscdk:aws-cdk-lib (#1350)
dependabot[bot] 28b2f1f
build(deps): bump aws.sdk.version from 2.20.120 to 2.20.121 (#1351)
dependabot[bot] 594b788
build(deps): bump aws.sdk.version from 2.20.121 to 2.20.122 (#1354)
dependabot[bot] bc71586
build(deps): bump aws.sdk.version from 2.20.122 to 2.20.123 (#1355)
dependabot[bot] e8cd878
build(deps): bump aws.sdk.version from 2.20.123 to 2.20.124 (#1356)
dependabot[bot] ae58dd6
build(deps-dev): bump software.amazon.awscdk:aws-cdk-lib (#1357)
dependabot[bot] ef11a64
docs: Adding CDK example (#1321)
AlexeySoshin 6f05396
build(deps-dev): bump org.yaml:snakeyaml from 2.0 to 2.1 (#1344)
dependabot[bot] f03832b
build(deps): bump org.apache.maven.plugins:maven-compiler-plugin (#1360)
dependabot[bot] 78e8972
build(deps-dev): bump org.junit.jupiter:junit-jupiter (#1362)
dependabot[bot] 3ebd5cc
build(deps): bump aws.sdk.version from 2.20.124 to 2.20.125 (#1361)
dependabot[bot] b386ef4
Merge
scottgerring d282916
Merge
scottgerring adb2a7e
build(deps): bump org.codehaus.mojo:exec-maven-plugin (#1366)
dependabot[bot] aa40708
build(deps-dev): bump software.amazon.awscdk:aws-cdk-lib (#1368)
dependabot[bot] bca90c9
build(deps): bump aws.sdk.version from 2.20.125 to 2.20.126 (#1367)
dependabot[bot] be284e2
build(deps): bump aws.sdk.version from 2.20.126 to 2.20.127 (#1372)
dependabot[bot] 424f888
build(deps): bump aws.sdk.version from 2.20.109 to 2.20.128 (#1377)
dependabot[bot] 41be012
more main
scottgerring 29f71dd
fix: Roll log4j shade transformer forwards (#1376)
scottgerring a0ea4c3
build(deps): bump com.amazonaws:aws-lambda-java-core from 1.2.2 to 1.…
dependabot[bot] e7fb00c
build(deps): bump aws.sdk.version from 2.20.127 to 2.20.129 (#1380)
dependabot[bot] cfd45bd
chore:Prep release 1.17.0 (#1381)
jeromevdl 7b0af2c
chore: Fix missing version change pieces (#1382)
scottgerring 018e319
We shouldn't deploy CDK (#1383)
scottgerring 1c84795
build(deps): bump aws.sdk.version from 2.20.129 to 2.20.130 (#1386)
dependabot[bot] 99982d6
Fix batch pom (#1385)
scottgerring b01e3df
Update to snapshot (#1384)
scottgerring 07c31d3
Fix batch logging (#1387)
scottgerring db278ad
Merge branch 'main' into main-into-v2
scottgerring 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 hidden or 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 hidden or 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 hidden or 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,2 +1,4 @@ | ||
dependency-reduced-pom.xml | ||
.aws-sam | ||
cdk.out | ||
.m2 |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
scottgerring marked this conversation as resolved.
Show resolved
Hide resolved
|
Empty file.
This file contains hidden or 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 hidden or 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,36 @@ | ||
# Powertools for AWS Lambda (Java) - Core Utilities Example with CDK | ||
|
||
This project demonstrates the Lambda for Powertools Java module deployed using [Cloud Development Kit](https://aws.amazon.com/cdk/). | ||
|
||
For general information on the deployed example itself, you can refer to the parent [README](../README.md) | ||
|
||
## Configuration | ||
CDK uses the following project structure: | ||
- [app](./app) - stores the source code of your application, which is similar between all examples | ||
- [infra](./infra) - stores the definition of your infrastructure | ||
- [cdk.json](./infra/cdk.json) - tells the CDK Toolkit how to execute your app | ||
- [CdkApp](./infra/src/main/java/cdk/CdkApp.java) - bootstraps your stack, taking AWS `account` and `region` as input | ||
- [CdkStack](./infra/src/main/java/cdk/CdkStack.java) - defines the Lambda function to be deployed as well as API Gateway for it. | ||
|
||
It is a [Maven](https://maven.apache.org/) based project, so you can open this project with any Maven compatible Java IDE to build and run tests. | ||
|
||
|
||
## Deploy the sample application | ||
|
||
The minimum to deploy the app should be | ||
```bash | ||
cdk deploy | ||
``` | ||
|
||
If you're running CDK for the first time, you'll need to first run the bootstrap command: | ||
```bash | ||
cdk bootstrap | ||
``` | ||
|
||
## Useful commands | ||
|
||
* `mvn package` compile and run tests | ||
* `cdk synth` emits the synthesized CloudFormation template | ||
* `cdk deploy` deploy this stack to your default AWS account/region | ||
* `cdk diff` compare deployed stack with current state | ||
* `cdk docs` open CDK documentation |
File renamed without changes.
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.
Uh oh!
There was an error while loading. Please reload this page.