https://github.com/aws-devops-projects/3tier-architecture-with-cdk
Creating an infrastructure that is redundant across multiple availability zones, end users can only access the app through a domain name, the database should only be accessible from the application servers. a secure way to access the servers for troubleshooting must be provided.
https://github.com/aws-devops-projects/3tier-architecture-with-cdk
Last synced: about 1 year ago
JSON representation
Creating an infrastructure that is redundant across multiple availability zones, end users can only access the app through a domain name, the database should only be accessible from the application servers. a secure way to access the servers for troubleshooting must be provided.
- Host: GitHub
- URL: https://github.com/aws-devops-projects/3tier-architecture-with-cdk
- Owner: AWS-Devops-Projects
- License: mit
- Created: 2022-07-18T10:38:35.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-18T10:41:50.000Z (almost 4 years ago)
- Last Synced: 2025-03-28T18:50:49.911Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 15
- Watchers: 1
- Forks: 20
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# three tier architecture with cdk
This repo contains code for a three tier application consisting of web layer, app layer and data layer.
The template is highly customizable with many features thanks to the CDK's flexibility, including custom IP's for the VPC and the optional provisioning of the database layer.
## Useful commands
* `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
Enjoy!