diff --git a/2023.md b/2023.md
index 19b3485..f480d58 100644
--- a/2023.md
+++ b/2023.md
@@ -107,12 +107,12 @@ Or contact us via Twitter, my handle is [@MichaelCade1](https://twitter.com/Mich
### AWS
- [✔️] ☁️ 49 > [AWS Cloud Overview](2023/day49.md)
-- [✔️] ☁️ 50 > [Get a Free Tier Account & Enable Billing Alarms](2023/day50.md)
+- [✔️] ☁️ 50 > [Create Free Tier Account & Enable Billing Alarms](2023/day50.md)
- [✔️] ☁️ 51 > [Infrastructure as Code (IaC) and CloudFormation](2023/day51.md)
-- [] ☁️ 52 > [](2023/day52.md)
-- [] ☁️ 53 > [](2023/day53.md)
-- [] ☁️ 54 > [](2023/day54.md)
-- [] ☁️ 55 > [](2023/day55.md)
+- [✔️] ☁️ 52 > [Identity and Access Management (IAM)](2023/day52.md)
+- [✔️] ☁️ 53 > [AWS Systems Manager](2023/day53.md)
+- [✔️] ☁️ 54 > [AWS CodeCommit](2023/day54.md)
+- [✔️] ☁️ 55 > [AWS CodePipeline](2023/day55.md)
### Red Hat OpenShift
diff --git a/2023/day49.md b/2023/day49.md
index f813768..83b6f84 100644
--- a/2023/day49.md
+++ b/2023/day49.md
@@ -1,5 +1,13 @@
# Day 49: AWS Cloud Overview
+Welcome to the AWS section of the 90 Days of DevOps! Picking 7 items to learn about is difficult for several reasons:
+1. At last count, there were 250+ AWS services
+2. Each service could get it's own multi-day deep dive 😅
+
+Because of that, we're going to do a gentle intro that starts off easy, goes into some very DevOps-salient services, then ends with a section-capstone project that will give you a lot of exposure to AWS DevOps services.
+
+I hope you enjoy the next 7 days as much as I did creating them. If you have any questions feel free to ask!
+
AWS Cloud is a cloud computing platform provided by Amazon Web Services (AWS). It offers a wide range of services, including computing, storage, networking, database, analytics, machine learning, security, and more. AWS Cloud allows businesses and organizations to access these services on a pay-as-you-go basis, which means they only pay for what they use and can scale their resources up or down as needed.

diff --git a/2023/day54.md b/2023/day54.md
index 012b474..eba936d 100644
--- a/2023/day54.md
+++ b/2023/day54.md
@@ -15,6 +15,8 @@ Some key features of AWS CodeCommit include:
- Highly scalable and available, with automatic backups and failover capabilities
- Integration with other AWS developer tools like AWS CodePipeline and AWS CodeBuild
+In order to effectively leverage CodeCommit, you of course need to know how to use Git. There are [many](https://www.youtube.com/playlist?list=PL2rC-8e38bUXloBOYChAl0EcbbuVjbE3t) [excellent](https://youtu.be/tRZGeaHPoaw) [Git](https://youtu.be/USjZcfj8yxE) [tutorials](https://youtu.be/RGOj5yH7evk) out there, (and that's not my section anyway 😉) so I won't go into that myself.
+
Overall, AWS CodeCommit is a powerful tool for teams that need to collaborate on code, manage their repositories securely, and streamline their development workflows.
diff --git a/2023/day55.md b/2023/day55.md
index ec10310..306d412 100644
--- a/2023/day55.md
+++ b/2023/day55.md
@@ -1,2 +1,62 @@
# Day 55: AWS CodePipeline
+On this last day of AWS services we are going to talk about a big one that has a lot of moving parts and integrations. There are a few free resources out there that will help in your learning/understanding of this... but honestly some of the best ones will cost you some money. I will list them out seperately in the resources section and call them out, but I would be remiss in NOT mentioning them as they are fantastic for learning this complex service
+
+CodePipeline is a fully managed continuous delivery service that allows you to automate your IaC or software release processes. It enables you to create pipelines that build, test, and deploy your code changes continuously and (with proper testing in place) reliably:
+
+
+
+With CodePipeline, you can create pipelines that automate your build, test, and deployment workflows, ensuring that your code changes are reliably deployed to your target environments. It enables you to achieve faster release cycles, improve collaboration among development and operations teams, and improve the overall quality and reliability of your software releases.
+
+AWS CodePipeline integrates with other AWS services:
+- [Source Action Integrations](https://docs.aws.amazon.com/codepipeline/latest/userguide/integrations-action-type.html#integrations-source)
+- [Build Action Integrations](https://docs.aws.amazon.com/codepipeline/latest/userguide/integrations-action-type.html#integrations-build)
+- [Test Action Integrations](https://docs.aws.amazon.com/codepipeline/latest/userguide/integrations-action-type.html#integrations-test)
+- [Deploy Action Integrations](https://docs.aws.amazon.com/codepipeline/latest/userguide/integrations-action-type.html#integrations-deploy)
+- [Approval Action Integrations](https://docs.aws.amazon.com/codepipeline/latest/userguide/integrations-action-type.html#integrations-approval)
+- [Invoke Action Integrations](https://docs.aws.amazon.com/codepipeline/latest/userguide/integrations-action-type.html#integrations-invoke)
+
+
+ It also integrates with third-party tools such as GitHub, Jenkins, and Bitbucket. You can use AWS CodePipeline to manage your application updates across multiple AWS accounts and regions.
+
+## Getting started with AWS CodePipeline
+
+To get started with AWS CodePipeline, there are several excellent [tutorials](https://docs.aws.amazon.com/codepipeline/latest/userguide/tutorials.html) in the [AWS User Guide](https://docs.aws.amazon.com/codepipeline/latest/userguide/welcome.html). They all basically break down into the following 3 steps:
+
+### Step 1: Create an IAM role
+
+You need to create an IAM role that allows AWS CodePipeline to access the AWS resources required to run your pipelines. To create an IAM role, review the steps from [Day 52](day52.md)
+
+### Step 2: Create a CodePipeline pipeline
+
+To create a CodePipeline pipeline, go to the AWS CodePipeline console, click on the "Create pipeline" button, and then follow the instructions to create your pipeline. You will need to specify the source location for your code, the build provider you want to use, the deployment provider you want to use, and the IAM role you created in step 2.
+
+### Step 3: Test and deploy your code changes
+
+Once you have created your CodePipeline pipeline, you can test and deploy your code changes. AWS CodePipeline will automatically build, test, and deploy your code changes to your target environments. You can monitor the progress of your pipeline in the AWS CodePipeline console.
+
+## Capstone Project
+To tie up this AWS section of the 90 Days of DevOps, I recommend that you go through Adrian Cantrill's excellent mini-project, the [CatPipeline](https://www.youtube.com/playlist?list=PLTk5ZYSbd9MgARTJHbAaRcGSn7EMfxRHm). In it you will be exposed to CodeCommit, CodeBuild, CodeDeploy, and CodePipeline in a fun little project that will give you a taste of a day in the life of a DevOps engineer.
+- [YouTube CatPipeline Playlist](https://www.youtube.com/playlist?list=PLTk5ZYSbd9MgARTJHbAaRcGSn7EMfxRHm)
+- [GitHub CatPipeline Repo](https://github.com/acantril/learn-cantrill-io-labs/tree/master/aws-codepipeline-catpipeline)
+
+
+## Resources (Free):
+
+[AWS: Real-world CodePipeline CI/CD Examples ](https://youtu.be/MNt2HGxClZ0)
+
+[AWS CodePipeline User Guide](https://docs.aws.amazon.com/codepipeline/latest/userguide/welcome.html)
+
+[AWS CodePipeline Tutorials](https://docs.aws.amazon.com/codepipeline/latest/userguide/tutorials.html)
+
+[AWS CodeCommit tutorial: your first Repo, Commit and Push](https://youtu.be/t7M8pHCh5Xs)
+
+[AWS CodeCommit vs GitHub: Which will Shine in 2023?](https://appwrk.com/aws-codecommit-vs-github)
+
+## Resources (Paid):
+There are a number of excellent instructors out there and picking 2-3 is always hard, but [Adrian Cantrill](https://learn.cantrill.io/), [Andrew Brown](https://www.exampro.co/), and [Stephane Maarek](https://www.udemy.com/user/stephane-maarek/) always come to mind when discussing fantastic content out there.
+
+## Final Thoughts
+I hope that this section of the 90 Days of DevOps has given you a taste of what is available in the AWS ecosystem.
+
+Good luck in your studies! Up next is Red Hat OpenShift!
\ No newline at end of file
diff --git a/2023/images/day55-01.jpg b/2023/images/day55-01.jpg
new file mode 100644
index 0000000..7eac233
Binary files /dev/null and b/2023/images/day55-01.jpg differ