---
title: 'Cloud Engineer Roadmap | From Beginner to Advanced'
source: 'https://youtube.com/watch?v=6eroP2XGtTI'
video_id: '6eroP2XGtTI'
date: 2026-08-19
duration_sec: 2214
channel: 'TechWorld with Nana'
---

# Cloud Engineer Roadmap | From Beginner to Advanced

> Source: [Cloud Engineer Roadmap | From Beginner to Advanced](https://youtube.com/watch?v=6eroP2XGtTI)

## Summary

This video provides a comprehensive, step-by-step roadmap for becoming a cloud engineer, covering everything from foundational IT skills to advanced topics like Kubernetes, CI/CD, and security. The presenter, Nana, emphasizes the importance of building a solid foundation before diving into specific cloud platforms and highlights the value of hands-on projects and certifications.

### Key Points

- **The Problem with On-Premises Infrastructure** [00:02] — Traditional on-premises infrastructure is slow to provision, taking weeks to deploy new applications and failing to scale during traffic spikes, whereas cloud-native companies can provision resources in minutes and scale automatically.
- **High Demand and Salaries for Cloud Skills** [00:44] — Cloud computing jobs are among the highest paying in tech, with average salaries well above $100,000 in many markets, making cloud engineering an exciting and lucrative career path.
- **Start with IT Fundamentals** [01:45] — Before jumping into a cloud provider, you need a solid foundation in operating systems (especially Linux), networking fundamentals, basic programming/scripting (like Python), and database basics (SQL and NoSQL).
- **Learn Core Cloud Concepts** [03:42] — Understand cloud service models (IaaS, PaaS, SaaS), deployment models (public, private, hybrid, multicloud), the shared responsibility model, and basic cloud economics and cost optimization.
- **Choose a Cloud Provider and Start with Essentials** [04:44] — AWS is a good starting point due to its market share. Focus on essential services like EC2 for virtual machines, S3 for storage, and VPC for networking, rather than trying to learn every service.
- **Adopt Infrastructure as Code (IaC)** [07:04] — Manual resource creation is not scalable. Use IaC tools like Terraform to define and provision infrastructure in code, enabling automation, consistency, and easier changes across environments.
- **Master Containerization with Docker and Kubernetes** [10:27] — Docker packages applications with their dependencies, solving the 'works on my machine' problem. Kubernetes orchestrates containers at scale, automating deployment, scaling, and management. Start with managed services like EKS, AKS, or GKE.
- **Implement CI/CD Pipelines** [14:40] — CI/CD pipelines bridge the gap between code and infrastructure, automating builds, tests, and deployments. They are crucial for cloud engineers to manage infrastructure changes, ensure consistency, and reduce deployment errors.
- **Set Up Monitoring, Logging, and Observability** [23:20] — To ensure applications run correctly, you need to understand the differences between monitoring, logging, and observability, and use tools like Prometheus, Grafana, and cloud-specific solutions to create dashboards and alerts.
- **Integrate Security into Every Step** [27:42] — Security should not be an afterthought. Understand the shared responsibility model, IAM, network security, and data protection. Use tools like AWS Config and Security Hub to automate compliance checks.
- **Learn by Building Real Projects** [32:25] — The most effective way to learn is by building real projects, starting with simple deployments and progressively adding complexity, such as containerizing an application and setting up a CI/CD pipeline.
- **Use Certifications as Validation** [35:01] — Certifications like AWS Certified Solutions Architect can help you get past HR filters, but they should validate real skills, not just memorized answers. Focus on understanding concepts and implementing them in projects.

### Conclusion

Becoming a cloud engineer is a rewarding journey that requires a solid foundation, continuous learning, and practical project experience. The roadmap is not linear, and you will learn multiple areas simultaneously, but building a strong base and expanding your knowledge through hands-on projects is the key to success.

## Transcript

still manages all their infrastructure on premises. Whenever a new application needs to be deployed, it takes weeks to order hardware, set up networking, configure servers, and finally deploy the application. And when traffic spikes
unexpectedly, the application crashes because you can't scale resources quickly enough. Now, contrast this with a cloudnative company where infrastructure is provisioned in minutes. It automatically scales based
on demand and developers can focus on building features instead of waiting for infrastructure. That's the power of cloud computing. Plus, the demand for cloud skills continues to grow every year. According to recent data, cloud
computing jobs are among the highest paying in tech with average salaries well above 100,000 in many markets. And that's why there are many professionals who are considering becoming cloud engineers because it's one of the most
exciting careers in IT right now. And that's why in this video I want to give you a structured road map of what you need to learn exactly in which order in order to become a cloud engineer. Now I know many of you want to have a tangible
document as a guide next to a video. So to make this even more valuable for you, we created a full cloud engineering road map PDF as well with a bunch of detailed examples to help you as a guide. You can grab it from below the video or just
scan this QR code here. And as a thank you from you, I would appreciate your comment about one important thing you learned by the end of this video. First of all, let's start our road map with the foundation. Many aspiring cloud
engineers ask me, "Nana, can I jump straight into learning AWS or Azure without any prior tech experience?" Well, technically yes, but you would be building a house without a proper foundation. Let me explain why this
matters. Think about a situation where you're deploying a web application to the cloud and suddenly it's not accessible anymore. Without understanding networking concepts like IP addresses, DNS, load balancing and
firewalls, it will be really difficult for you to troubleshoot the issue. So what are these foundational skills for cloud engineering? First of all, you need a solid understanding of operating systems, particularly Linux. Why?
Because most cloud workloads run on Linux. So you should be comfortable with command line, understanding file permissions, basic operations on the operating system, basic shell scripting and so on. Next, networking fundamentals
are very important. When a customer complains that they can't access your application, you need to understand how to check if it's a DNS issue, a routing problem, or perhaps a misconfigured security group. Basic programming or
scripting knowledge is also essential. Now, you don't need to be a programmer or a software developer by any means, but you should understand basic coding concepts and be able to write simple scripts to automate tasks because cloud
engineers usually automate a lot of the work. So, programming languages like Python is extremely valuable in the cloud space. It's a lightweight programming language and it's used very often for automation. And finally,
understanding the basics of databases, both SQL and NoSQL as data storage will also be a very important component of any cloud application. Once we have these IT fundamentals in place, it's time to understand the cloud concepts.
Imagine you are in a meeting where your team is deciding whether to migrate an application to the cloud. Someone asks, should we use AAS or pass or SAS for these service models and their trade-offs, you can't really contribute
meaningfully to this decision. So, start by learning the core cloud concepts like cloud service models. What is infrastructure as a service or platform as a service or software as a service? Understand different deployment models,
public cloud, private cloud, hybrid or even multicloud. Understand the core benefits of cloud computing. what is a shared responsibility model as well as basic cloud economics, cost of cloud and cost optimization which is a huge topic
in the cloud space. Now once you've understood these concepts go ahead and choose a cloud provider that you want to learn. AWS, Azure and Google Cloud are the big three but AWS currently has the largest market share. So it's often a
good starting point. So you can create a free account and start exploring the AWS UI console. Now once you log in to AWS you will see a tons of services and it may be very overwhelming and it's important to understand that you don't
need to learn everything on cloud every single AWS service because most of them will probably not be relevant for you. So it's important to know what are the basic most essential cloud services or AWS services that you need to learn at
the beginning. So basically musthaves versus some optional ones. Begin with understanding how to create virtual machines on cloud with compute service like EC2 which is probably like the core of any cloud platform. Provisioning and
using virtual machines or virtual servers on the cloud. So learn how to operating systems, how to connect to them, how to SSH into them to access the
terminal of that virtual machine and as well as understand different instance types and their pricing models. Once you're comfortable with EC2 service or virtual machine service on Azure, move to the storage services like AWS S3
bucket or blob storage on Azure. Understand the concept of how object storage actually works. how to create buckets or containers, how to upload files and set permissions. S3 service is
a pretty simple one. So once you've understood this, then you can explore networking in cloud which is also the most essential part of cloud engineering knowledge on AWS. Understand what are the VPCs or virtual private clouds where
are the subnets, route tables, internet gateways, security groups and this is where your networking fundamentals knowledge from earlier will really help you. Let me give you a concrete example. I once worked with a team that was
experiencing slow application performance happens very often. After investigation, we discovered that they had placed their database in a different region than their web servers that was causing high latency. So without
understanding cloud networking concepts, this issue would have been much more difficult to diagnose and fix. As you become comfortable with manually creating resources in the cloud, you will quickly realize that this is not
scalable. Imagine having to click through the AWS UI console to create hundreds of resources for a production environment. Lots of EC2 instances or the S3 buckets and the entire networking configuration. Not only is it time
consuming, but you may also make tons of mistakes or forget some important steps as we humans usually do. And this is where infrastructure as code or IA actually comes in. Instead of manually creating resources, you basically define
your infrastructure in code with tools like Terraform or Palumi for example. You let these tools provision the whole infrastructure for you automatically. Now there are different infrastructure as code tools including AWS's own cloud
form which only works on their cloud platform. So it's better to start with learning Terraform or Palumi that works for any cloud platform or infrastructure. Terraform for example is one of the most popular ones and it
works across all major cloud providers. So start with Terraform, understand the basic syntax, understand how to create resources on AWS, how to use variables, what are the modules and how to manage state. For example, instead of manually
state. For example, instead of manually creating a VPC, subnets, then EC2 instances, and an RDS database through the AWS UI, you can define all of these in a Terraform configuration file and create the entire environment with a
single Terraform apply command. And when you need to make changes to your existing infrastructure like maybe add more EC2 instances or change firewall configuration or some network configuration, you simply modify the
code in Terraform and apply it again and again Terraform will connect to the AWS API and make those changes in your AWS infrastructure. Then we also have configuration management tools like Enible that are also important for
managing the configuration of your virtual servers. So while Terraform is great for provisioning infrastructure like spinning up servers, configuring various cloud services, Enzible helps you install software packages and
configure settings on the existing already provisioned servers like doing security patches or upgrading versions of installed packages on the operating system and so on. A practical infrastructure as code use case from
many of my projects is where we needed to deploy the same application on multiple deployment environments like development, staging and production environments. So by using Terraform and Anible we could ensure that each
environment was almost identical in configuration which means when you test your application on development and staging environments you're much more confident that it will work the same when you deploy it on production
environment and of course both Terraform and Enzible are covered in detail in combination with AWS cloud platform and bunch of the services that we provision and configure there in our DevOps boot
because they are essential tools of not only cloud engineers but DevOps engineers as well. As you progress in your cloud engineering journey, you'll encounter containerization, a technology that has basically revolutionized how
applications are packaged and deployed. Think about this scenario. Your development team has built an application that works perfectly on their laptops, but when it's deployed to the cloud environment, it fails with
some dependency issues or because it expects certain environment variables to be defined in its OS environment which are not set or it expects latest version of Python to be installed but it's finding an older version. Sound
familiar? This is the it works on my machine problem that containers helped solve. So Docker basically helped package the entire OS configuration and dependencies that the application needs together with application code in an
artifact which you can deploy on any server without preconfiguring the server with bunch of different tools and technologies and OS environment configuration. So no wonder Docker became a standard in modern application
development because it solved such a major problem. So to familiarize yourself with containerization, start by learning Docker, understand what Docker containers are, how they differ from virtual machines, what are Docker
images, and some of the basic Docker commands for building and running Docker images as containers. But running individual containers is not enough for production workloads where you may have thousands or tens of thousands of Docker
containers of various microservices and databases and other services that your application needs. You need orchestration to manage those containers at scale and that's where Kubernetes comes in. Kubernetes is like your
automated operations manager that automates the deployment of containerized applications scaling it up and down or restarting them when they crash with some issues. So begin with understanding Kubernetes concepts like
understanding Kubernetes concepts like pods, deployments, services and ingress. These are like the core most fundamental Kubernetes components and then learn how to deploy applications to Kubernetes as well as how to scale them or roll back
the deployments if they fail. Now Kubernetes is a pretty complex technology to install and operate by yourself. So most cloud providers like Azure, AWS, Google Cloud offer what's called managed Kubernetes services where
they basically handle the provisioning of the Kubernetes cluster completely for you as well as managing the control plane of Kubernetes. So if you want to learn Kubernetes, I suggest to start with one of these managed Kubernetes
with one of these managed Kubernetes services like EKS or AKS from Azure or GKE from Google Cloud rather than trying to set up your own Current cluster from scratch. Again, another specific example is in one of my earlier projects as a
Kubernetes administrator, I worked with a company that was really struggling with scaling their applications during peak times. So they had this traffic spikes basically and they couldn't handle those traffic spikes with their
application. So by containerizing their application and deploying it to Kubernetes, we could automatically scale up the workload during hight traffic periods and scaling down during quiet
times. So all the effort was put in in the initial configuration, but once that was set up, scaling up and down could basically happen within autopilot. And that helped us save significant costs while ensuring that the application
remained responsive. And both Docker and Kubernetes are such essential components Kubernetes are such essential components of modern cloud applications that they of modern cloud applications that they are extensively covered with dozens of
hands-on projects, very complex projects both in our DevOps and Devs boot camps. both in our DevOps and Devs boot camps. We have total of 40 plus hours covering these two technologies alone. So now you've mastered containerization and
Kubernetes. There is still a critical piece missing here. Now think about this scenario. Your team has 10 microservices running in Kubernetes. Each service is being actively deployed by different teams. The question is how do you get
all these changes from code repositories to your Kubernetes cluster without slow manual deployment process or without causing application downtime or even
worse without security risk of all 10 teams having direct access to the cluster to deploy their changes and risk that one team may mess up the entire
cluster for everyone else with some misconfigurations. And this is exactly where CI/CD pipelines come in. They serve as a bridge between your application code and your Kubernetes infrastructure or deployment
environment. Imagine your development team has just completed a new feature with a proper CI/CD pipeline. Here is what happens automatically. The code is built and tested. A new Docker image is created with the code changes. The image
is tagged and pushed to a container registry. Kubernetes manifest files are updated with the new image version. The application is deployed to Kubernetes using the appropriate deployment strategy like rolling update or blue
green or canary deployment. The deployment is validated with automated tests and finally the monitoring confirms that everything is working correctly with the new deployment. Now without this automation, you'd be
manually building the images, updating the manifest files, applying the changes to your cluster, a process that's not only time consuming every time you need to deploy your application changes, but it's also extremely prone to human
it's also extremely prone to human error. Which means CI/CD automation is an extremely important part of a software development and deployment workflow. So as a cloud engineer you need to start by understanding the
need to start by understanding the concepts of CI/CD and the overall software delivery life cycle. Once you understand those concepts then you can get hands-on and learn one specific CI/CD tool like GitHub actions or
Jenkins or GitLab CI. For comparison, Jenkins is a more legacy or traditional tool which many engineers dislike because it's not as modern and because it's not as modern and userfriendly, but it's somehow still the
most widely CI/CD tool out there. So, there's still a lot of demand for Jenkins knowledge. GitHub actions or GitHub CI on the other hand are more modern alternatives which are also widely used in more modern projects. So
you can pick either one and create a basic pipeline that automatically builds, tests and deploys an application when changes are pushed to the code repository. And in the context of this simple demo project, you will understand
simple demo project, you will understand the concepts like pipeline stages, jobs, artifacts, pipeline sode, and so on. I worked with a team that reduced their worked with a team that reduced their deployment time from 27 days to 3 and
1/2 hours by implementing a proper CSA pipeline. That's how efficient this can make your work. More importantly, the reliability of their deployments actually improved significantly because we had far fewer production incidents
that were related to deployments. Now, speaking of improving your development workflow, we also need to talk about code reviews, often a hidden bottleneck in the CI/CD process. And that's where Code Rabbit, our sponsor for this video,
comes in. Code Rabbit is an AI powered code review tool that analyzes poll requests to identify potential issues and provides actionable suggestions based on that analysis. Recently they
have introduced free AI code review directly in Visual Studio Code and its forks like cursor and windsurf. This means that you can catch and fix issues
means that you can catch and fix issues immediately while coding reduce PR back and forth which speeds up your workflow and submit poll requests with more confidence. By the way, using code rebbit doesn't mean replacing human
reviewers. It makes them just more efficient by handling the tedious parts and highlighting what truly needs human attention. For cloud engineers specifically, this means faster validation of your infrastructure code
to identify an issues and ensuring best practices. If you want to try it out, you can simply install Code Rebbit in your IDE. I will leave the link in the description. Now, let's continue with the road map. So understanding CI/CD is
important for cloud engineers because it bridges the gap between development and operations and helps your teams deliver the code changes, application changes much more frequently and faster and even with fewer bugs to the end environment.
And because CI/CD concept and knowledge is so important, it's also the core of is so important, it's also the core of DevOps. And that's why we cover CI/CD in the deepest detail. It's probably has the most amount of projects dedicated in
the most amount of projects dedicated in the both DevOps and Devs boot camps with the both DevOps and Devs boot camps with both Jenkins and GitLabci to also learn the comparison between these two types of CI/CD tools. And those projects start
of CI/CD tools. And those projects start from basic to extremely advanced from basic to extremely advanced production grade very complex CI/CD workflows. Now you may be asking wait why do I need to learn CI/CD as a cloud
engineer? Is this not handled by software developers or DevOps engineers? At first glance CI/CD might seem like something only DevOps engineers or software developers need to worry about. So nothing that cloud engineers would
actually have to work with. But in reality in many companies, in many projects, CI/CD is actually the core part of working with cloud infrastructure. And here is why it matters to you as a cloud engineer.
First of all, even if a DevOps engineer or a developer writes the pipeline code and configures the CI/CD pipeline, it's usually your infrastructure, Kubernetes
clusters on cloud, EC2 instances, S3 buckets, bunch of cloud services and so on that they are deploying to. So you need to understand how those deployment
workflows work so that you can set up proper permissions and AM roles or monitor and fix deployment problems from the CI/CD pipeline to the end
environment. Handle rollbacks if something in deployment goes wrong. So a lot of this CD part of that release pipeline is actually something that you will be involved in with your expertise. Second, as a cloud engineer, you're not
just managing infrastructure. You're often writing infrastructure as code with tools like Terraform or Palumi to provision infrastructure at the beginning, but later to keep it up to date and do configuration changes,
upgrades and so on. And guess what? Those Terraform or Palumi or Inible code changes also get deployed and tested through CI/CD pipelines. So in modern
through CI/CD pipelines. So in modern cloud world with the concept of githops the infrastructure code is treated the same as the application code. So with CI/CD you can automate infrastructure changes catch mistakes early as well as
keep all your environments like development staging and prod environments consistent so they don't end up having completely different configurations which will make testing for production more difficult. So CI/CD
is not just about application code. It's about how everything gets deployed. Applications, infrastructure updates, cluster updates, configuration changes on the servers and so on. So as a cloud engineer, you need to be comfortable
engineer, you need to be comfortable with CI/CD just like DevOps engineers or software developers so that you can build, scale, secure your modern cloud systems. As you deploy more complex applications to the cloud, you need to
ensure they're running correctly and troubleshoot issues when they arise. And this is where monitoring, logging, and observability come in. Imagine getting a call at 2:00 a.m. because the application has crashed, but you have no
monitoring in place. you would have to manually check each component to find the issue under pressure because every minute counts when your users are affected and nobody can use your application. So in order to understand
this concepts start by understanding the differences between monitoring, logging and observability. To understand this simply, think of a monitoring as an alarm system in a building. While logging would be like having cameras
installed everywhere in that building in every corner to record all activities. every corner to record all activities. And observability is the entire system including cameras and alarm system, all the software behind where you can watch
the camera footage or have backups and so on. Once you understand these concepts, then you can go and explore specific monitoring solutions like open-source Prometheus stack or cloudspecific ones like cloudatch from
AWS. Then you can check specific logging solutions like elastic stack with solutions like elastic stack with elastic search, fluent, kibana or cloud elastic search, fluent, kibana or cloud trace from AWS. Learn how to set up
monitoring dashboards that have all the key information that you need at one key information that you need at one glance, as well as configure alerts that proactively notify you whenever something out of ordinary happens in
your systems and configure automated responses to common issues. Understand the concepts like metrics and logs, traces, and how they all work together to provide a complete picture of your application's health. For example, a
proper observability setup might include having metrics that show system performance and request rates and error rates in your applications and so on. Alerts that notify you when something goes wrong. Dashboards that give you a
goes wrong. Dashboards that give you a visual overview of your system health. Logs that are providing detailed information about specific events that are happening in your application. or having traces that show the path that
every request goes through in your distributed microservices application. I once worked in a project where engineers were constantly firefighting production issues. It was a complete mess. By implementing proper monitoring and
observability, they could detect problems proactively before users reported them and often fixed the issues before they caused any crashes or outages, which obviously made everyone's lives much easier. Now, we teach all of
lives much easier. Now, we teach all of this in both DevOps and Dev Secops boot camps because monitoring is not only important for keeping your system stable, but also extremely important in security. So, we covered this in detail
in both boot camps, including automated fixes when issues happen. So we use Prometheus stack for monitoring infrastructure Kubernetes cluster thirdparty services inside the cluster and even our own application using a
Prometheus library. So learning how to do monitoring on all levels of the system not just the application and the infrastructure but really at each single infrastructure but really at each single layer. In DevSec Ops, we use AWS based
observability services like Cloudatch and Cloud Trail and even learn how to and Cloud Trail and even learn how to autofix an issue when it's detected automatically in the cloud infrastructure and all of these in
deepest detail for proper understanding. These are actually one of the most These are actually one of the most complex and advanced topics. So there is a huge value in learning all of these tools and how to configure them properly
for your applications and it's especially important to learn them especially important to learn them easily to save yourself some pain and being overwhelmed by its complexity. Now have we forgotten security as it always
happens and I understand why because all of the above are already complex enough to take most of our efforts and skills. So now we also need to think about this So now we also need to think about this huge topic of security. Well, security
should not be an afterthought. It should be integrated into every step of your cloud engineering journey. As you build more complex systems in the cloud and as your attack surface increases, security becomes even more important. Consider
becomes even more important. Consider this scenario. Let's say our company has just experienced a data breach because an S3 bucket was accidentally made public. We didn't have security checks in place. So among our hundreds of
buckets and super complex infrastructure setup, one single misconfiguration slipped through production where we forgot to lock down one of the S3 bucket
accesses. Now our company is facing potential regulatory fines. We've lost our customer trust and we're investing countless hours in remediation work. This is why cloud security matters and security is extremely hard because we
need to lock down and secure every single point of access in our systems. while the hackers, the bad actors only need one entry point, one accidentally
forgotten configuration, one security loophole. So the offense is much easier than the defense in the game of security. And that's why our devs secops security. And that's why our devs secops boot camp is four month long because it
covers every layer and every single point of the software development and deployment life cycle including cloud security including access permissions at security including access permissions at every level to every part of the system.
It's a lot but imagine how valuable that knowledge is for any team, any project, any company. So to start on this important learning journey, start by understanding the shared responsibility model on cloud. What security aspects
the cloud provider handles versus what you are responsible for. Very important. Learn about identity and access management. How to create users, roles, permissions, policies that follow the principle of lease privilege. Understand
network security in the cloud including security groups, network ACL, private subnets. Explore data protection, including encryption at rest and in transit. Learn about key management and secure storage options. Also learn about
security compliance frameworks that are relevant to your specific industry. So for example, a wellsecured cloud environment might include AM policies that grant minimal necessary permissions to both human and system users, network
security that restricts access to resources, encryption for sensitive application and system data, regular security audits and vulnerability scanning, automated compliance checks. I worked with a financial services company
that needed to meet strict compliance requirements which are specific to different industries by implementing very important cloud security controls very important cloud security controls and using services like AWS config and
security hub. They built a system where they could continuously verify compliance and if any of the configuration changes or deployments violated the compliance rules, they would quickly remediate any issues
because of these regular verifications. And as I mentioned, security is the highlight and the main focus of dev secops. So cloud security is a huge part
of our devs boot camp with access permissions not only for AWS AM but also permissions not only for AWS AM but also for Kubernetes cluster for CI/CD platform the infrastructure is code security compliance as code policy as
code. So security but also automated security. So all of this that I just mentioned with even more examples and details is included into the cloud
engineering road map that we created specifically for this video. We're going to leave it in the video description below. Now that we've covered the road map, let's talk about how to actually learn these skills effectively. The most
important thing is to build real projects, not just follow some projects, not just follow some tutorials. Create a personal cloud lab where you can experiment with different services, architectures, and tools.
Here's a progressive project approach that you may take starting from simple to incrementally increasing the complexity. First of all, start by deploying a simple static website to S3 bucket or Azure storage if you're on
bucket or Azure storage if you're on Azure. Then in the next step move to Azure. Then in the next step move to hosting a dynamic web application on EC2 instance or again Azure VMs on Azure so that you can practice the basic and
that you can practice the basic and fundamental concepts and services of cloud platforms. Once you have that in the next step you can refactor your the next step you can refactor your application to use manage services like
RDS for the database. Then you can implement the infrastructure automation for all of these things that you've built manually in the cloud and you can use a tool like Terraform for that. So learn the basics of Terraform and learn
practically how to create a basic cloud infrastructure to give you exactly what you need for the steps one to three. After that, as a next step, go ahead and containerize your application and deploy it to a managed Kubernetes cluster like
it to a managed Kubernetes cluster like EKS or AKS. Then set up a CI/CD pipeline for automated deployments to that Kubernetes cluster using GitHub actions Kubernetes cluster using GitHub actions or GitLab CI to get your first hands-on
practice of creating a release pipeline. Now this will already give you an extremely valuable foundational knowledge to understand the entire cycle. If you want to go a step further, add monitoring and observability to your
application and your cluster and infrastructure. And last but not least, again don't forget about security. Go ahead and implement Kubernetes security ahead and implement Kubernetes security best practices or CI/CD pipeline best
practices. This will give you realworld experience and allow you to stack the knowledge step by step. Learning one important concept and tool after another. Document your learning journey through a blog or GitHub repository.
This will serve you both as a learning tool for yourself as well as a portfolio for potential employers. And remember, cloud technology evolves rapidly. So set cloud technology evolves rapidly. So set aside regular times to stay updated with
new services and features and concepts that become important in the field. Now while hands-on experience is the most important and absolutely irreplaceable certifications can validate your knowledge and help you get past some HR
filters. So it definitely has an advantage and value to get those certificates. And each cloud provider actually has their own certificates like AWS certified cloud practitioner or solutions architect certificates or for
Azure you have Azure administrator associate you have Google cloud associate engineer and so on. Now very important don't just memorize answers for the exams in order to get those certificates really focus on
understanding the concepts and implementing them in real projects. The certification should be just a validation of the skills that you actually possess, not just a piece of paper that you somehow managed to get by
memorizing the answers to the exam. Because eventually you will need to use Because eventually you will need to use those skills at an actual work. So, as you see, becoming a cloud engineer requires a lot of learning and practice,
but it's an incredibly rewarding career path with really good growth opportunities. And remember, this road map is not linear. You will likely be learning multiple areas at the same time and returning to topics as you discover
new depth. So, the key is to build a solid foundation and then continuously expand your knowledge through practical projects. I would really love to hear about your cloud learning journey and maybe create more specific content to
help you along the way. And with that, as always, thank you for watching and as always, thank you for watching and see you in the next video.
