https://github.com/adamfitzpatrick/aws-devops-pro
Training, demos and labs for working toward the AWS DevOps Pro certification
https://github.com/adamfitzpatrick/aws-devops-pro
Last synced: 7 months ago
JSON representation
Training, demos and labs for working toward the AWS DevOps Pro certification
- Host: GitHub
- URL: https://github.com/adamfitzpatrick/aws-devops-pro
- Owner: adamfitzpatrick
- Created: 2024-03-25T00:20:28.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-04T05:30:15.000Z (almost 2 years ago)
- Last Synced: 2024-12-28T15:37:59.696Z (over 1 year ago)
- Language: JavaScript
- Size: 279 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AWS DevOps Professional Certification
This repository contains documentation and hands-on labs and demos useful in studying for the AWS DevOps Pro certification.
The repo is organized to give overviews of each of the AWS services evaluated in the exam, as well as demonstration packages showing how services and be combined and leveraged to fully automate the development process.
## Domains
- [Domain One: SDLC Automation](./domains/one/README.md)
- Domain Two
- Domain Three
- Domain Four
- Domain Five
- Domain Six
## A Note on CloudFormation & AWS CDK
Although CloudFormation and AWS CDK are specifically covered under Domain Two, service-specific documentation and study guides within this repository may include CloudFormation & CDK details relevant to the service in question, such as Resource Types, Properties, and Classes. Additionally, the deployable applications in this repo rely heavily upon AWS Cloud Development Kit for rapid configuration and deployment of required infrastructure.
Please refer to the appropriate parts of Domain Two for background on this information.
## Labs and Demonstrators
Please note that labs and demos in this repository are centered around the Node.js ecosystem. Scripts and deployments have been evaluated using the following software versions:
- **Node.js** v20.x.x
- **npm** v10.x.x
- **yarn** v4.x.x
- **AWS CDK** v2.130.x
### Account Prep
Most of the demos in this repo are configured and deployed using AWS CDK. To use this, your AWS account must first be "bootstrapped":
```bash
cdk bootstrap aws:///
```
or, if you have configured a default account and region:
```bash
cdk bootstrap
```