Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/TysonWorks/cdk-examples
AWS CDK Examples Repository
https://github.com/TysonWorks/cdk-examples
aws aws-cdk cdk cdk-examples docker eks kubernetes serverless
Last synced: 3 days ago
JSON representation
AWS CDK Examples Repository
- Host: GitHub
- URL: https://github.com/TysonWorks/cdk-examples
- Owner: TysonWorks
- Created: 2019-07-19T09:27:37.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-20T00:44:53.000Z (over 1 year ago)
- Last Synced: 2024-08-02T20:48:19.382Z (3 months ago)
- Topics: aws, aws-cdk, cdk, cdk-examples, docker, eks, kubernetes, serverless
- Language: TypeScript
- Size: 733 KB
- Stars: 60
- Watchers: 7
- Forks: 27
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Examples using AWS CDK (Cloud Development Kit)
### How to Deploy Examples
Install the CDK CLI globally
`npm install -g aws-cdk`Change directory to any example
`cd sagemaker`Install dependencies
`npm install`Set environment variables
`vim .env`Deploy using the CDK CLI
`cdk deploy`or deploy to non-default AWS profile
`cdk deploy --profile my_profile`### Other CLI Commands
- `cdk diff` Prints out the difference in stacks
- `cdk destroy` Removes the stack
- `cdk list` List the applications in given folder
- `cdk synth` Synthesizes and prints the CloudFormation template for the stack
- `cdk init` Generates a new cdk project
- `cdk doctor` Checks the CDK setup