Skip to content
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

Add new construct AmplifyDatabaseCluster #2969

Open
wants to merge 32 commits into
base: feature/aurora-serverless
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
e45a695
feat: add Amplify Database Construct package
dpilch Oct 15, 2024
56a4119
feat: add Amplify Database Construct package
dpilch Oct 15, 2024
8b066fd
feat: create basic aurora cluster
dpilch Oct 15, 2024
9f0dadd
feat: set write config
dpilch Oct 15, 2024
214c878
test: add basic tests cases
dpilch Oct 15, 2024
03042c3
feat: add console and dataapi secrets
dpilch Oct 15, 2024
d0dced8
feat: add data source strategy
dpilch Oct 15, 2024
341b167
chore: add gitignore and npmignore
dpilch Oct 15, 2024
f7421d5
feat: set engine type
dpilch Oct 15, 2024
d872530
docs: update comments
dpilch Oct 15, 2024
2d83b99
feat: use serverless writer
dpilch Oct 15, 2024
252267d
feat: use correct db port in datasource
dpilch Oct 15, 2024
7912754
feat: remove secret optional check
dpilch Oct 15, 2024
6260b0a
build: remove lib tracking
dpilch Oct 15, 2024
496c0b5
chore: update jsii
dpilch Oct 15, 2024
67890d2
test: add amplify-database-construct-tests package
dpilch Oct 15, 2024
9c8b407
feat: add default db name to secret
dpilch Oct 16, 2024
c158bc1
test: fix assertions
dpilch Oct 21, 2024
fae0737
test: e2e test skeleton
dpilch Oct 17, 2024
fbc49cc
docs: update readme
dpilch Oct 21, 2024
45cd0f9
chore: refresh jsii
dpilch Oct 22, 2024
a33dbeb
test: remove coverage on index and types
dpilch Oct 24, 2024
d62c07e
docs: add todo to readme
dpilch Oct 24, 2024
e644b82
docs: update property doc string
dpilch Oct 24, 2024
36454ad
fix: remove mysql
dpilch Oct 24, 2024
24b05a4
docs: add todo for datasource strategy
dpilch Oct 24, 2024
5a6fdd3
test: add assertions on data source strategy
dpilch Oct 24, 2024
c22eae7
fix: use generated param group name
dpilch Oct 24, 2024
bfa4668
test: remove mysql e2e test
dpilch Oct 24, 2024
2443185
test: update todo comment
dpilch Oct 24, 2024
378d12a
test: fix e2e test
dpilch Oct 24, 2024
9cc69e3
chore: remove zip from tracking
dpilch Oct 25, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions codebuild_specs/e2e_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -802,15 +802,15 @@ batch:
CLI_REGION: ap-south-1
depend-on:
- publish_to_local_registry
- identifier: 3_gsis_1k_records_3_gsis_10k_records
- identifier: 3_gsis_1k_records_3_gsis_10k_records_basic
buildspec: codebuild_specs/run_cdk_tests.yml
env:
compute-type: BUILD_GENERAL1_LARGE
variables:
NODE_OPTIONS: '--max-old-space-size=14848'
TEST_SUITE: >-
src/__tests__/deploy-velocity-temporarily-disabled/3-gsis-1k-records.test.ts|src/__tests__/deploy-velocity-temporarily-disabled/3-gsis-10k-records.test.ts
CLI_REGION: ap-southeast-1
src/__tests__/deploy-velocity-temporarily-disabled/3-gsis-1k-records.test.ts|src/__tests__/deploy-velocity-temporarily-disabled/3-gsis-10k-records.test.ts|src/__tests__/database-construct/basic.test.ts
CLI_REGION: eu-north-1
depend-on:
- publish_to_local_registry
- identifier: sql_pg_userpool_auth
Expand Down
3 changes: 3 additions & 0 deletions packages/amplify-database-construct/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
tsconfig.json
dist
lib
Loading
Loading