https://github.com/neilkuan/serverless-container-constructs-challenges
for serverless container challenges.
https://github.com/neilkuan/serverless-container-constructs-challenges
Last synced: about 2 months ago
JSON representation
for serverless container challenges.
- Host: GitHub
- URL: https://github.com/neilkuan/serverless-container-constructs-challenges
- Owner: neilkuan
- Created: 2021-07-30T05:48:41.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-31T14:04:32.000Z (almost 4 years ago)
- Last Synced: 2025-03-29T02:38:27.532Z (2 months ago)
- Language: CSS
- Size: 8.48 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Serverless Containers Constructs Challenges.
## First Challenge: Run a Serverless Container via AWS CDK.
- [x] Run a Serverless Container via DualAlbFargateService() (from [cdk-fargate-patterns](https://github.com/pahud/cdk-fargate-patterns)).
- [x] Alias load balancer dns domain name on yourself Domain.
- [x] Open `https://serverless-container-constructs-challenges.my.domain` get the result.### To diff:
```bash
cdk diff -c arn="arn:aws:acm:ap-northeast-1:123456789012:certificate/3e4r5t6y-3e3e-2w2w-1q1q-x1x1x1x1x1x" -c zoneId="Z2345erty456722ws" -c zoneName="example.com"
```### To deploy:
```bash
cdk deploy -c arn="arn:aws:acm:ap-northeast-1:123456789012:certificate/3e4r5t6y-3e3e-2w2w-1q1q-x1x1x1x1x1x" -c zoneId="Z2345erty456722ws" -c zoneName="example.com"
```
After deploy completed, you can see the result on `https://serverless-container-constructs-challenges.my.domain`
### To destroy:
```bash
cdk destroy
```