This repository has been archived by the owner on Aug 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: better structure and more parameters (#12)
Co-authored-by: Steffen Neubauer <[email protected]> Co-authored-by: Srihas <[email protected]>
- Loading branch information
1 parent
2a76911
commit 1228e6b
Showing
20 changed files
with
1,863 additions
and
1,394 deletions.
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
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 |
---|---|---|
|
@@ -2,3 +2,4 @@ node_modules | |
errors | ||
cdk.out | ||
cdk.context.json | ||
*.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
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,3 @@ | ||
{ | ||
"app": "npx ts-node main.ts", | ||
"context": { | ||
"hostedZoneId": "Z028702323WOQ31QJAJJP", | ||
"subdomainName": "dev.marketplace.sys.garden", | ||
"iamUsers": "", | ||
"iamRole": "arn:aws:sts::049586690729:assumed-role/AWSReservedSSO_AdministratorAccess_b3c1cae6dc09120a" | ||
} | ||
"app": "ts-node -P tsconfig.json --prefer-ts-exts src" | ||
} |
This file was deleted.
Oops, something went wrong.
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,19 @@ | ||
#!/bin/bash | ||
|
||
# This script is meant to be used for end-to-end testing, so we can test the whole thing without actually releasing it on github. | ||
|
||
set -e -o pipefail | ||
|
||
export CDK_RELEASE_VERSION=edge | ||
|
||
cd $(dirname $0) | ||
|
||
npm install | ||
npm run synth | ||
npm run rain | ||
npm run upload-assets | ||
npm run upload-templates | ||
|
||
echo | ||
echo "Quick start: https://console.aws.amazon.com/cloudformation/home#/stacks/quickcreate?stackName=garden-dev-cluster&templateURL=https://garden-cfn-public-releases.s3.amazonaws.com/dev-cluster/$CDK_RELEASE_VERSION/garden-dev-cluster.template.yaml" | ||
echo "Template URL: https://garden-cfn-public-releases.s3.amazonaws.com/dev-cluster/$CDK_RELEASE_VERSION/garden-dev-cluster.template.yaml" |
Oops, something went wrong.