Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryparker/aws-cdk-sample-applicationloadbalancedfargateservice
AWS CDK sample repo that uses `ApplicationLoadBalancedFargateService`.
https://github.com/ryparker/aws-cdk-sample-applicationloadbalancedfargateservice
Last synced: about 6 hours ago
JSON representation
AWS CDK sample repo that uses `ApplicationLoadBalancedFargateService`.
- Host: GitHub
- URL: https://github.com/ryparker/aws-cdk-sample-applicationloadbalancedfargateservice
- Owner: ryparker
- Created: 2021-11-05T19:25:43.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-13T20:31:00.000Z (about 3 years ago)
- Last Synced: 2025-01-19T04:48:35.790Z (1 day ago)
- Language: Java
- Homepage: https://github.com/aws/aws-cdk/issues/9247
- Size: 86.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AWS CDK Sample ApplicationLoadBalancedFargateService
## :rocket: Quick Start
**1. Install CDK globaly using NPM**
```shell
npm install -g aws-cdk
```**2. Create the [bootstrap stack](https://docs.aws.amazon.com/cdk/latest/guide/bootstrapping.html) in your AWS account**
_This only needs to be ran once per account/region._```shell
cdk bootstrap
```**3. Build Cloudformation files**
```shell
cdk synth
```**4. Deploy**
```shell
cdk deploy
```## Useful commands
| Command | Definition |
| ------------- | ----------------------------------------------------- |
| `mvn package` | Compile and run tests. |
| `cdk ls` | List all stacks in the app. |
| `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. |