EduArn – Online & Offline Training with Free LMS for Python, AI, Cloud & More

Showing posts with label devops. Show all posts
Showing posts with label devops. Show all posts

Terraform Certification Roadmap 2026: Complete HashiCorp Terraform Associate & Professional Guide

🔷 TERRAFORM 🎓 HASHICORP CERTIFICATION ⚙️ DEVOPS ☁️ INFRASTRUCTURE AS CODE 🚀 2026 ROADMAP

Terraform Certification Roadmap 2026: Complete HashiCorp Terraform Associate & Professional Guide

Learn the complete Terraform certification roadmap for 2026. Discover HashiCorp Terraform Associate 004, Terraform Authoring and Operations Professional, exam requirements, certification costs, exam topics, Terraform HCL, modules, state management, HCP Terraform, DevOps career paths, study plans and hands-on project ideas.

🎯 What You Will Learn

This complete Terraform certification guide explains how to start a Terraform career, prepare for the HashiCorp Certified: Terraform Associate (004) certification and understand the advanced Terraform Authoring and Operations Professional path.

You will also learn Infrastructure as Code, Terraform CLI, HCL configuration, providers, resources, variables, outputs, modules, state, remote backends, HCP Terraform, AWS, DevOps automation and Terraform career opportunities.

1 What Is Terraform?

Terraform is an Infrastructure as Code (IaC) tool used to define, provision and manage infrastructure through human-readable configuration.

Instead of manually creating every cloud resource through a graphical console, engineers can describe infrastructure in configuration files and use Terraform to create and manage those resources.

Terraform can be used across cloud and infrastructure environments through providers. This makes Terraform useful for cloud engineers, DevOps engineers, platform engineers, infrastructure engineers and site reliability professionals.

🔷 Why Is Terraform Important for DevOps?

Terraform supports repeatable infrastructure deployments, automation, version-controlled infrastructure and infrastructure management through code.

Terraform skills are therefore closely connected with modern DevOps, cloud engineering, platform engineering, CI/CD and Infrastructure as Code practices.

2 Terraform Certification Roadmap 2026

HashiCorp currently offers Terraform certifications at two levels: the foundational Terraform Associate and the advanced Terraform Authoring and Operations Professional. :contentReference[oaicite:1]{index=1}

🌱

Terraform Associate 004

Best starting certification for professionals developing foundational Terraform skills.

⚙️

Terraform Professional

Advanced credential for practitioners with production-level Terraform authoring and operations experience.

☁️

Cloud Provider Skills

Build Terraform skills together with AWS, Azure or other cloud platforms.

🚀

DevOps Career

Combine Terraform with Git, CI/CD, containers, Kubernetes and cloud engineering.

3 HashiCorp Certified: Terraform Associate 004

The Terraform Associate (004) is the foundational Terraform certification for cloud engineers who understand Terraform concepts and skills.

The current Associate exam tests Terraform 1.12 and includes HCP Terraform content. HashiCorp recommends basic terminal skills and an understanding of on-premises and cloud architecture. :contentReference[oaicite:2]{index=2}

✅ Best For:

Beginners learning Terraform, cloud engineers, DevOps engineers, infrastructure engineers, system administrators, developers and professionals who want to validate foundational Infrastructure as Code skills.

4 Terraform Associate 004 Exam Details

Exam Detail Terraform Associate 004
Certification HashiCorp Certified: Terraform Associate
Version Tested Terraform 1.12
Assessment Multiple choice
Delivery Online proctored
Duration 1 hour
Price $70.50 USD + applicable local taxes and fees
Language English
Credential Validity 2 years

HashiCorp currently lists the Terraform Associate 004 exam as a one-hour online-proctored multiple-choice exam priced at $70.50 USD plus locally applicable taxes and fees. The credential expires after two years. :contentReference[oaicite:3]{index=3}

5 Terraform Associate 004 Exam Topics

The Associate 004 exam covers the fundamental concepts needed to use Terraform effectively.

Area What You Should Learn
Infrastructure as Code IaC concepts, benefits and Terraform use cases
Terraform Fundamentals Providers, plugins, configuration and state
Core Workflow init, validate, plan, apply, destroy and fmt
Configuration Resources, data sources, variables, outputs and expressions
Modules Module usage, composition, variables and versioning
State Backends, state locking, drift and state management
Infrastructure Maintenance Importing resources and inspecting Terraform state
HCP Terraform Workspaces, projects, collaboration and governance

HashiCorp's official Associate 004 content list covers Infrastructure as Code, Terraform fundamentals, the core workflow, configuration, modules, state management, infrastructure maintenance and HCP Terraform. :contentReference[oaicite:4]{index=4}

6 Terraform Core Commands You Should Know

Terraform certification preparation should include practical knowledge of the Terraform CLI.

terraform init terraform fmt terraform validate terraform plan terraform apply terraform destroy terraform state list terraform show
💡 Exam Preparation Tip:

Do not simply memorize Terraform commands. Understand what each command does, when to use it and how it affects the Terraform workflow and state.

7 Terraform HCL Configuration

Terraform configurations are written using HashiCorp Configuration Language (HCL).

You should understand resources, data sources, variables, outputs, expressions, functions, dependencies and lifecycle behavior.

terraform {
  required_providers {
    aws = {
      source  = "hashicorp/aws"
      version = "~> 6.0"
    }
  }
}

provider "aws" {
  region = "us-east-1"
}

resource "aws_s3_bucket" "example" {
  bucket = "example-terraform-bucket"
}

The exact provider version and cloud configuration used in your projects should be selected according to the current provider documentation and your environment.

8 Terraform Providers

Terraform uses providers to interact with APIs and manage resources. Understanding providers is a fundamental part of Terraform certification preparation.

☁️

AWS

Use Terraform to manage AWS infrastructure and services.

🔷

Azure

Automate Microsoft Azure infrastructure through Terraform.

🌐

Google Cloud

Provision and manage Google Cloud infrastructure.

☸️

Kubernetes

Terraform can also integrate with Kubernetes and other infrastructure platforms.

9 Terraform State Explained

Terraform state is one of the most important concepts for Terraform users and certification candidates.

Terraform uses state to keep track of infrastructure resources and their relationship to the configuration. Understanding state is essential for planning, applying, importing and maintaining infrastructure.

📌 Learn These Terraform State Concepts:
  • Terraform state file
  • Local state
  • Remote state
  • State locking
  • State drift
  • Terraform state commands
  • Importing existing infrastructure
  • Remote backends
  • HCP Terraform state management

10 Terraform Modules

Terraform modules allow teams to organize reusable infrastructure configuration.

Understanding modules is important for both the Terraform Associate exam and especially the advanced Terraform Professional certification.

module "network" {
  source = "./modules/network"

  environment = "production"
  region      = "us-east-1"
}

As you progress from Terraform beginner to professional, learn module structure, input variables, outputs, module composition, module versioning and reusable infrastructure patterns.

11 HCP Terraform and Certification

HCP Terraform is part of the current Terraform certification curriculum. Associate 004 includes HCP Terraform concepts covering workspaces, projects, collaboration, governance and integrations. :contentReference[oaicite:5]{index=5}

☁️ What Should You Learn About HCP Terraform?

  • HCP Terraform workspaces
  • Projects
  • Remote operations
  • Variables and variable sets
  • Workspace organization
  • Team collaboration
  • Run workflows
  • Governance and policy concepts

12 Terraform Authoring and Operations Professional

The Terraform Authoring and Operations Professional certification is designed for practitioners with advanced, production-level Terraform experience.

The certification tests advanced configuration authoring, Terraform workflows, modules, infrastructure lifecycle management and scalable collaborative operations.

⚠️ Important:

This is not the ideal first Terraform certification for someone who has never used Terraform. HashiCorp recommends the Terraform Associate certification, or equivalent experience, and expects substantial production experience.

HashiCorp describes the Professional certification as a credential for practitioners with extensive production experience developing Terraform configuration and using Terraform to manage infrastructure over time. :contentReference[oaicite:6]{index=6}

13 Terraform Professional Exam Details

Exam Detail Terraform Authoring & Operations Professional
Product Version Tested Terraform 1.6
Assessment Lab-based + multiple choice
Duration 4 hours, including a 15-minute break
Price $295 USD + applicable local taxes and fees
Free Retake Included
Language English
Credential Validity 2 years
Current Cloud Provider AWS

HashiCorp currently lists the Professional exam as a four-hour online-proctored assessment combining hands-on labs and multiple-choice questions. The current exam uses AWS; HashiCorp says the Azure provider version is in active development with an expected late-2026 launch. :contentReference[oaicite:7]{index=7}

14 Terraform Professional Exam Skills

🔄

Resource Lifecycle

Initialize, plan, apply, import and manage infrastructure changes.

🧩

Advanced HCL

Build dynamic, reusable and maintainable Terraform configuration.

📦

Modules

Design, version, refactor and maintain reusable modules.

🤝

Collaboration

Build scalable Terraform workflows for teams and organizations.

15 Terraform Professional Exam Objectives

Objective Key Skills
Resource Lifecycle init, plan, apply, import and lifecycle management
Advanced Configuration Dynamic HCL, expressions and configuration design
Modules Reusable modules, versioning and refactoring
Terraform Workflows Remote state, automation and collaborative operations
Providers Authentication, aliases, versions and troubleshooting
HCP Terraform Workspaces, access, credentials and governance

The Professional exam assesses Terraform best practices, dynamic HCL configuration and scalable collaborative workflows. :contentReference[oaicite:8]{index=8}

16 Terraform Certification Path for Beginners

LEVEL 1

🌱 Learn Cloud Basics

Understand cloud computing, networking, compute, storage, IAM and basic infrastructure concepts.

LEVEL 2

🔷 Learn Terraform

Learn HCL, providers, resources, variables, outputs, state and Terraform CLI commands.

LEVEL 3

🎓 Associate 004

Prepare for the HashiCorp Certified: Terraform Associate 004 certification.

LEVEL 4

💻 Build Projects

Create practical AWS, Azure or multi-cloud Infrastructure as Code projects.

LEVEL 5

🚀 DevOps Skills

Add Git, GitHub, CI/CD, Docker, Kubernetes, Linux and cloud automation.

LEVEL 6

🏆 Professional

Move toward the Terraform Authoring and Operations Professional certification after gaining production experience.

17 Complete Terraform Certification Roadmap 2026

🎯 Simple Terraform Roadmap:

Cloud Fundamentals → Terraform Basics → HCL → Providers → Resources → State → Modules → HCP Terraform → Terraform Associate 004 → DevOps Projects → Production Experience → Terraform Professional

STEP 1

☁️ Cloud Fundamentals

Learn AWS, Azure or another cloud platform and understand basic infrastructure concepts.

STEP 2

🔷 Terraform Fundamentals

Learn Terraform installation, providers, resources and the Terraform workflow.

STEP 3

📝 HCL

Learn variables, outputs, expressions, functions, dependencies and lifecycle rules.

STEP 4

📦 Modules & State

Learn reusable modules, remote state, backends, locking and infrastructure drift.

STEP 5

🎓 Associate 004

Prepare using the current Terraform 1.12 exam objectives.

STEP 6

🏗️ Production Terraform

Work with real infrastructure, reusable modules, automation and team workflows.

STEP 7

🚀 DevOps Automation

Add CI/CD, Git, GitHub Actions, containers and Kubernetes.

STEP 8

🏆 Terraform Professional

Target the advanced Professional certification after gaining the required production-level expertise.

18 Terraform Career Paths

Terraform is not limited to one job title. Infrastructure as Code skills can support several cloud and DevOps careers.

☁️

Cloud Engineer

Build and automate cloud infrastructure.

🚀

DevOps Engineer

Automate infrastructure and software delivery pipelines.

🏗️

Infrastructure Engineer

Design and manage infrastructure through code.

⚙️

Platform Engineer

Build reusable infrastructure and internal developer platforms.

🔐

Cloud Security Engineer

Apply security and governance practices to cloud infrastructure.

☸️

SRE

Automate infrastructure and reliability workflows.

19 Terraform + AWS Career Path

Terraform and AWS are a particularly useful combination for cloud and DevOps engineers. The current Terraform Professional exam uses the AWS provider, making AWS infrastructure knowledge relevant for advanced Professional candidates. :contentReference[oaicite:9]{index=9}

FOUNDATION

☁️ AWS Basics

Learn EC2, S3, IAM, VPC, security groups and basic AWS networking.

TERRAFORM

🔷 Terraform AWS Provider

Learn how Terraform communicates with AWS through providers.

AUTOMATION

⚙️ IaC Projects

Deploy AWS infrastructure using Terraform configuration.

DEVOPS

🚀 CI/CD

Automate Terraform deployments through Git-based workflows.

20 Terraform Projects for Your Portfolio

Certification preparation becomes much stronger when you create real Terraform projects.

  • Deploy an AWS VPC using Terraform.
  • Create an AWS EC2 infrastructure project.
  • Build an AWS S3 infrastructure configuration.
  • Create reusable Terraform modules.
  • Build a multi-environment Terraform project.
  • Configure remote Terraform state.
  • Build a Terraform CI/CD pipeline.
  • Deploy infrastructure using GitHub Actions.
  • Build a Kubernetes infrastructure project.
  • Create an Azure infrastructure project.
  • Create a multi-cloud Terraform project.
  • Build an infrastructure monitoring environment.

21 90-Day Terraform Certification Study Plan

Period Learning Focus
Days 1–15 Cloud fundamentals, Infrastructure as Code and Terraform basics
Days 16–30 Terraform CLI, providers, resources and HCL
Days 31–45 Variables, outputs, expressions, functions and dependencies
Days 46–60 Modules, state, backends, locking and drift
Days 61–70 HCP Terraform, workspaces, projects and collaboration
Days 71–80 Practice Terraform projects and certification questions
Days 81–90 Revision, mock tests, weak-topic review and exam preparation

22 How to Prepare for Terraform Associate 004

HashiCorp provides an official Associate 004 learning path, exam content list and sample questions. The official learning path recommends studying Terraform fundamentals, providers, state, the core workflow, configuration, modules, state management, infrastructure maintenance and HCP Terraform. :contentReference[oaicite:10]{index=10}

✅ Recommended Preparation Method
  1. Read the current exam objectives.
  2. Learn Terraform fundamentals.
  3. Install Terraform locally.
  4. Create a personal practice environment.
  5. Write HCL configuration.
  6. Use Terraform init, plan and apply.
  7. Practice modules and state management.
  8. Study HCP Terraform concepts.
  9. Complete official sample questions.
  10. Review weak areas before booking the exam.

23 Terraform Certification vs Hands-On Experience

A Terraform certification validates knowledge against a defined exam objective set. It does not replace practical infrastructure experience.

📚

Certification

Demonstrates structured knowledge of Terraform concepts.

💻

Hands-On Skills

Demonstrate your ability to actually work with Terraform.

🏗️

Projects

Give you portfolio evidence of Infrastructure as Code skills.

💼

Experience

Builds production troubleshooting and architecture skills.

24 Terraform Skills Employers Look For

  • Terraform HCL
  • Infrastructure as Code
  • Terraform CLI
  • Terraform modules
  • Terraform state management
  • Remote backends
  • Cloud providers
  • AWS or Azure
  • Git and GitHub
  • CI/CD pipelines
  • Linux
  • Docker
  • Kubernetes
  • Cloud networking
  • IAM and security
  • HCP Terraform

25 Terraform Certification for DevOps Engineers

Terraform is especially useful for DevOps professionals because infrastructure can become part of an automated software delivery workflow.

🚀 Recommended DevOps Learning Stack

Linux → Git → Cloud → Terraform → CI/CD → Docker → Kubernetes → Monitoring → Security

Terraform should therefore be learned as part of a broader cloud and DevOps skill set rather than as an isolated technology.

26 Is Terraform Certification Worth It?

Terraform certification can be valuable if Terraform is relevant to your target cloud, DevOps, infrastructure or platform engineering role.

The value is strongest when certification is combined with hands-on Terraform projects, cloud experience and automation skills.

💡 Best Approach:

Do not learn Terraform only to pass an exam. Learn Terraform well enough to create, modify, troubleshoot and maintain infrastructure using code.

27 What Do People Search for About Terraform Certification?

If you are researching Terraform certification, you may find this guide useful for many common search questions around Terraform exams, certification costs, prerequisites, study plans and DevOps careers.

28 Common Terraform Certification Mistakes

  • Studying from an outdated Terraform certification guide.
  • Using old Terraform Associate exam objectives.
  • Ignoring HCP Terraform topics.
  • Memorizing questions instead of learning Terraform.
  • Not practicing Terraform CLI commands.
  • Ignoring Terraform state.
  • Skipping modules.
  • Not building real cloud infrastructure.
  • Learning Terraform without learning a cloud platform.
  • Attempting the Professional exam without production experience.
⚠️ Always Check the Current Exam Version

HashiCorp updates certification exams. Before registering, verify the current certification version, objectives, pricing, exam format and eligibility requirements from HashiCorp's official certification resources.

29 Terraform Associate 004 vs Professional

Feature Terraform Associate 004 Terraform Professional
Level Foundational Advanced / Professional
Best For Terraform beginners and cloud engineers Experienced Terraform practitioners
Exam Multiple choice Labs + multiple choice
Duration 1 hour 4 hours
Terraform Version 1.12 1.6
Current Provider Focus Provider-agnostic fundamentals AWS
Price $70.50 USD + applicable taxes/fees $295 USD + applicable taxes/fees
Validity 2 years 2 years

The current certification details are based on HashiCorp's certification catalog. :contentReference[oaicite:11]{index=11}

30 Final Terraform Certification Roadmap

🎯 Your Terraform Career Roadmap:

Learn Cloud → Learn IaC → Learn Terraform → Master HCL → Learn Providers → Master State → Build Modules → Learn HCP Terraform → Pass Associate 004 → Build DevOps Projects → Gain Production Experience → Prepare for Terraform Professional

Terraform certification is a useful way to structure your Infrastructure as Code learning journey, but certification should be combined with practical cloud engineering.

Start with Terraform fundamentals, build infrastructure using code, understand state and modules, learn cloud platforms, automate deployments and gradually move toward advanced Terraform operations.

If your goal is a DevOps, cloud engineering or platform engineering career, Terraform is an important skill to add alongside Linux, Git, cloud computing, CI/CD, containers, Kubernetes and security.

31 Frequently Asked Questions About Terraform Certification

What is the Terraform certification?

HashiCorp currently offers the Terraform Associate certification and the Terraform Authoring and Operations Professional certification.

What is Terraform Associate 004?

Terraform Associate 004 is the current foundational HashiCorp Terraform certification. It tests Terraform 1.12 and includes HCP Terraform topics.

Is Terraform Associate 004 good for beginners?

Yes. It is the foundational Terraform certification and requires basic terminal skills and an understanding of on-premises and cloud architecture.

How much does Terraform Associate 004 cost?

HashiCorp currently lists the Terraform Associate 004 exam at $70.50 USD plus locally applicable taxes and fees.

How long is the Terraform Associate exam?

The current Terraform Associate 004 exam is one hour long.

How long is Terraform certification valid?

HashiCorp certifications are currently valid for two years.

What should I learn for Terraform Associate 004?

Learn Infrastructure as Code, Terraform fundamentals, providers, the Terraform workflow, HCL configuration, modules, state management, infrastructure maintenance and HCP Terraform.

Do I need AWS for Terraform Associate 004?

Provider-specific cloud knowledge is not required for the Terraform Associate 004 exam. However, learning Terraform with AWS, Azure or another cloud provider is strongly recommended for practical experience.

What is Terraform Professional certification?

Terraform Authoring and Operations Professional is an advanced HashiCorp certification for professionals with substantial production-level Terraform authoring and operations experience.

Is Terraform Professional harder than Terraform Associate?

Yes. The Professional exam is designed for advanced practitioners and includes hands-on lab scenarios as well as multiple-choice questions.

Does Terraform Professional use AWS?

The current Terraform Professional exam uses the AWS provider. HashiCorp says an Azure provider version is in active development with an expected late-2026 launch.

Should I take Terraform Associate before Terraform Professional?

HashiCorp strongly recommends the Associate certification, or equivalent experience, before the Professional certification. The Professional exam is intended for practitioners with advanced production experience.

Is Terraform a DevOps skill?

Yes. Terraform is widely used as an Infrastructure as Code tool in cloud and DevOps workflows. It is especially useful when combined with Git, CI/CD, cloud platforms, containers and Kubernetes.

Can Terraform certification help me get a job?

Certification can demonstrate structured Terraform knowledge, but employers also value cloud experience, Infrastructure as Code projects, automation, troubleshooting and broader DevOps skills.

What should I learn after Terraform Associate?

Build real Terraform projects, learn a cloud platform, practice CI/CD automation and gain production experience. Advanced practitioners can then consider Terraform Authoring and Operations Professional.

🚀 Start Your Terraform & DevOps Journey with Eduarn

Learn Terraform, Infrastructure as Code, cloud computing, DevOps, AWS, Azure, Python, AI, data engineering and modern technology skills through practical learning resources.

Learn Cloud → Master Terraform → Build Infrastructure → Automate DevOps → Grow Your Career

📚 Related Terraform Topics:

Terraform Certification  •  Terraform Associate 004  •  HashiCorp Certification  •  Terraform Professional  •  Infrastructure as Code  •  Terraform HCL  •  Terraform Modules  •  Terraform State  •  HCP Terraform  •  Terraform AWS  •  Terraform Azure  •  DevOps  •  Cloud Engineering  •  Platform Engineering  •  CI/CD  •  Kubernetes

Learn Terraform, Cloud & DevOps with Eduarn

Build practical skills in Terraform, Infrastructure as Code, AWS, Microsoft Azure, cloud computing, DevOps, Python, Data Science, AI and modern technology.

🎓 Build Skills Beyond Certification

A certification is only one part of a successful technology career. Build real Infrastructure as Code projects, practice cloud automation, learn DevOps workflows and develop practical troubleshooting skills.

🚀 Learn with Eduarn

Explore Eduarn learning resources covering Terraform, cloud computing, AWS, Azure, DevOps, AI, Python, Data Science and modern technology careers.

About Eduarn

Eduarn is a learning and training platform focused on practical technology skills including Terraform, Infrastructure as Code, AWS, Microsoft Azure, cloud computing, DevOps, cybersecurity, artificial intelligence, Python, Data Science and software development.

Ready to Start Your Terraform Journey?

Learn Infrastructure as Code, prepare for Terraform Associate 004, build cloud projects and develop the practical skills required for modern DevOps and cloud engineering careers.

Start Learning with Eduarn →

Microsoft Azure Certification Roadmap 2026: AZ-900, AZ-104, AZ-305, AZ-400 & More

☁️ MICROSOFT AZURE 🎓 CERTIFICATIONS 💼 CLOUD CAREER 🚀 2026 ROADMAP

Azure Certification Roadmap 2026: Complete Microsoft Azure Certification Guide

Learn the Microsoft Azure certification roadmap for 2026. Discover the best Azure certifications for beginners, administrators, developers, DevOps engineers, security professionals, data engineers, AI professionals and solution architects.

🎯 What You Will Learn

This complete Azure certification roadmap explains how to choose Microsoft Azure certifications based on your career goal. You will learn where to start, which certification comes next, and how to build an Azure learning path for cloud administration, development, DevOps, cybersecurity, data, AI and solution architecture.

⚠️ Important: Azure Certifications Change Over Time

Microsoft regularly updates, replaces and retires certification exams. This 2026 roadmap therefore focuses on currently relevant certification paths and identifies major certifications that have recently retired or are scheduled for retirement.

1 What Are Microsoft Azure Certifications?

Microsoft Azure certifications are professional credentials designed to validate knowledge and practical skills related to Microsoft's cloud platform.

Azure certifications can help learners structure their cloud education around a specific job role such as Azure Administrator, Developer, DevOps Engineer, Security Engineer, Data Professional, AI Engineer or Solutions Architect.

Certification should not be treated as a replacement for practical experience. The strongest Azure career path combines certification preparation with hands-on projects, labs, cloud deployments and real-world problem solving.

☁️ Why Learn Azure?

Microsoft Azure provides cloud services for computing, storage, networking, databases, security, analytics, application development, DevOps and artificial intelligence.

Learning Azure can therefore support several different technology career paths rather than a single job role.

2 Azure Certification Levels

Microsoft organizes certifications around different levels and professional roles. The appropriate certification depends on your current experience and the career you want to build.

🌱

Fundamentals

Beginner-friendly certifications for understanding cloud, Azure, data and AI concepts.

🛠️

Associate

Role-based certifications focused on practical professional skills.

🏆

Expert

Advanced certifications designed for experienced technology professionals.

🎯

Specialty

Certifications focused on specific Azure technologies and specialized workloads.

3 Azure Fundamentals Certifications

Fundamentals certifications are a useful starting point for learners who are new to cloud computing, Azure, data or AI.

Certification Exam Best For
Azure Fundamentals AZ-900 Cloud and Azure beginners
Azure Data Fundamentals DP-900 Data and database beginners
Azure AI Fundamentals AI-901 AI and machine-learning beginners
💡 Beginner Tip:

You do not necessarily need every fundamentals certification. Choose the fundamentals exam that matches your intended career direction.

4 AZ-900: Microsoft Azure Fundamentals

AZ-900 is one of the most common starting points for people beginning an Azure or cloud-computing journey.

It introduces important concepts such as cloud computing, Azure services, cloud architecture, security, governance and Azure pricing and support.

☁️

Cloud Concepts

Understand fundamental cloud-computing concepts.

🧱

Azure Services

Learn the purpose of major Azure services.

🔐

Security

Understand basic Azure security and governance concepts.

💰

Pricing

Learn the basics of Azure pricing, support and management.

5 Azure Administrator Certification Path

The Azure Administrator path is suitable for professionals who want to manage Azure infrastructure, identities, storage, compute, networking, governance and monitoring.

STEP 1

☁️ AZ-900

Start with Azure fundamentals if you are new to cloud or Azure.

STEP 2

🛠️ AZ-104

Build practical Azure administration skills covering identity, storage, compute, networking and monitoring.

STEP 3

🚀 Specialize

Add networking, hybrid infrastructure, security or DevOps skills depending on your career goals.

✅ Recommended Path:

AZ-900 → AZ-104 → Hands-on Azure Projects → Specialization

6 What Does AZ-104 Teach?

AZ-104 focuses on practical Azure administration. Microsoft identifies areas including Azure identities and governance, storage, compute, virtual networking, and monitoring.

Skill Area Examples
Identity & Governance Users, roles, policies and Azure governance
Storage Azure storage services and data management
Compute Virtual machines and Azure compute resources
Networking Virtual networks and network connectivity
Monitoring Monitoring and maintaining Azure resources

7 Azure Developer Certification Path

Azure developer certifications are designed for professionals who build and maintain applications using Azure services.

⚠️ 2026 Update:

The Microsoft Certified: Azure Developer Associate certification and its AZ-204 exam retired on July 31, 2026. Therefore, older roadmaps that present AZ-204 as a new 2026 certification path should not be followed without checking Microsoft's current certification catalog.

Developers should instead monitor Microsoft's current Azure developer and AI-development certifications and combine them with practical Azure application-development skills.

8 Azure DevOps Engineer Certification Path

Azure DevOps engineers work across development and infrastructure to automate software delivery, source control, testing, deployment, monitoring and security.

FOUNDATION

☁️ AZ-900

Learn the core concepts of Azure and cloud computing.

BACKGROUND

🛠️ AZ-104

Useful for professionals coming from an Azure administration and infrastructure background.

BACKGROUND

💻 Developer Skills

Application-development experience is another useful foundation for DevOps engineering.

EXPERT

🚀 AZ-400

Focus on designing and implementing Microsoft DevOps solutions.

🚀 What Does AZ-400 Cover?

The AZ-400 exam covers areas such as source control, build and release pipelines, security and compliance, instrumentation, monitoring and DevOps processes.

9 Azure Security Certification Path

Azure security professionals work with identity, security controls, governance, threat protection and cloud security architecture.

⚠️ 2026 Certification Update:

The Azure Security Engineer Associate certification associated with AZ-500 is scheduled to retire on August 31, 2026. Because Microsoft is actively changing its certification portfolio, always verify the current security certification options before registering for an exam.

A strong Azure security learning path should include cloud fundamentals, identity and access management, networking, security monitoring, governance, threat protection and practical security labs.

10 Azure Network Engineer Path

Networking is an important Azure specialization for professionals responsible for designing and maintaining cloud connectivity.

🌐

Virtual Networks

Understand Azure virtual networking and connectivity.

🔀

Routing

Learn how traffic moves between cloud resources.

🔐

Network Security

Understand security controls for Azure networks.

📡

Connectivity

Learn cloud and hybrid connectivity concepts.

🎯 Certification:

AZ-700: Designing and Implementing Microsoft Azure Networking Solutions is the specialist path to investigate for Azure networking skills.

11 Azure Data and AI Certification Path

Azure data and AI certifications have changed significantly. Several older certifications referenced in older Azure roadmaps have now retired.

Area 2026 Direction Suitable For
Azure AI Fundamentals AI-901 AI beginners
AI Applications & Agents AI-103 AI application developers
Data Analytics Microsoft Fabric certifications Data analysts and analytics professionals
Data Engineering Fabric / Azure Databricks paths Data engineers

12 AI-901: Azure AI Fundamentals

AI-901 is Microsoft's current Azure AI Fundamentals exam following the retirement of AI-900.

The current AI-901 exam focuses on AI concepts and implementing AI solutions using Microsoft Foundry. Areas include responsible AI, AI models, generative AI, agentic AI, computer vision, speech, text analysis and information extraction.

🤖

AI Concepts

Understand fundamental artificial intelligence concepts.

🧠

Machine Learning

Learn foundational machine-learning concepts on Azure.

Generative AI

Understand modern generative and agentic AI workloads.

🛡️

Responsible AI

Understand fairness, safety, privacy, transparency and accountability.

13 Azure AI Apps and Agents Developer Path

Microsoft's newer AI certification direction places greater emphasis on generative AI and agentic application development.

The Microsoft Certified: Azure AI Apps and Agents Developer Associate validates skills for designing, developing and deploying Azure AI solutions using Python and Microsoft Foundry.

🤖 AI-103: A Modern Azure AI Career Path

The AI-103 exam focuses on planning and managing Azure AI solutions, implementing generative AI and agentic solutions, computer vision, text analysis and information extraction.

For learners interested in modern AI engineering, this represents a more relevant direction than simply following older AI-102-based roadmaps.

14 Azure Solutions Architect Certification Path

The Azure Solutions Architect path is intended for experienced professionals who design cloud solutions based on technical and business requirements.

STEP 1

☁️ AZ-900

Establish fundamental knowledge of Azure and cloud concepts.

STEP 2

🛠️ AZ-104

Build practical understanding of Azure administration, infrastructure and services.

STEP 3

🏗️ AZ-305

Develop advanced Azure solution architecture skills.

✅ Recommended Architect Path:

AZ-900 → AZ-104 → Real Azure Projects → AZ-305

15 What Does an Azure Solutions Architect Do?

A Solutions Architect translates business requirements into technical cloud architectures.

  • Design Azure infrastructure.
  • Choose appropriate Azure services.
  • Design secure cloud architectures.
  • Plan scalability and availability.
  • Design data and application architectures.
  • Consider cost and operational requirements.
  • Work with developers, administrators and security teams.

16 Azure Certification Roadmap by Career

Career Goal Suggested Starting Path
Cloud Beginner AZ-900 → Azure Projects
Azure Administrator AZ-900 → AZ-104
Azure DevOps Engineer AZ-900 → AZ-104 or Development Background → AZ-400
Azure Network Engineer AZ-900 → Networking Skills → AZ-700
Azure Solutions Architect AZ-900 → AZ-104 → AZ-305
Azure AI Professional AZ-900 → AI-901 → AI-103 / relevant AI path
Data Professional DP-900 → Fabric / Azure Data specialization
Cloud Security Professional AZ-900 → Security Fundamentals → Current Security Path

17 Best Azure Certification Path for Beginners

If you have never worked with Azure before, avoid trying to complete multiple advanced certifications immediately.

MONTH 1

☁️ Cloud Fundamentals

Learn cloud computing, networking, storage, compute, identity and basic Azure services.

MONTH 2

🎓 AZ-900

Prepare for Azure Fundamentals and reinforce concepts through hands-on exercises.

MONTH 3+

🚀 Choose a Role

Move toward administration, DevOps, networking, security, AI, data or architecture.

18 Complete Azure Learning Roadmap: Beginner to Professional

LEVEL 1

🌱 Cloud Beginner

Learn cloud computing, Azure concepts, networking, storage and basic security.

LEVEL 2

☁️ Azure Fundamentals

Prepare for AZ-900 and understand the Azure ecosystem.

LEVEL 3

🛠️ Role Skills

Choose administration, development, networking, security, DevOps, data or AI.

LEVEL 4

🚀 Associate

Develop deeper professional skills through role-based certifications and projects.

LEVEL 5

🏆 Expert

Move toward advanced roles such as DevOps Engineer or Solutions Architect.

LEVEL 6

🔥 Professional

Combine certifications with architecture, automation, security and real-world cloud projects.

19 Azure Certification vs Hands-On Experience

A certification demonstrates that you have studied a defined set of skills. It does not automatically demonstrate that you can design, deploy and troubleshoot production systems.

📚

Certification

Validates knowledge against Microsoft's certification objectives.

💻

Hands-On Labs

Help you understand how Azure services actually work.

🏗️

Projects

Demonstrate your ability to apply Azure knowledge.

💼

Experience

Builds the troubleshooting and decision-making skills required in professional environments.

💡 Best Strategy:

Do not study only for the exam. For every certification topic, create a small Azure lab or project and document what you learned.

20 Azure Projects You Should Build

Projects can turn certification knowledge into practical experience.

  • Deploy a web application on Azure.
  • Create and configure an Azure virtual network.
  • Deploy and manage a virtual machine.
  • Build an Azure storage solution.
  • Configure Azure monitoring.
  • Create an automated CI/CD pipeline.
  • Build a serverless Azure Function.
  • Create an Azure AI application.
  • Build a data analytics solution.
  • Design a secure multi-tier Azure architecture.

21 Common Azure Certification Mistakes

  • Choosing a certification without a career goal.
  • Following an outdated certification roadmap.
  • Memorizing practice questions instead of learning Azure.
  • Ignoring hands-on labs.
  • Trying to complete too many certifications at once.
  • Ignoring networking and security fundamentals.
  • Not learning identity and access management.
  • Failing to build projects for a portfolio.
  • Ignoring certification retirement announcements.
  • Assuming certification alone guarantees employment.
⚠️ Avoid Outdated Azure Roadmaps

Azure certifications change frequently. Before booking an exam, check Microsoft's official certification page for the current exam number, prerequisites, retirement date and skills measured.

22 Azure Career Opportunities

Azure skills can support several technology careers.

☁️

Cloud Engineer

Build and operate cloud infrastructure.

🛠️

Azure Administrator

Manage Azure infrastructure and cloud resources.

🚀

DevOps Engineer

Automate software delivery and cloud operations.

🏗️

Solutions Architect

Design scalable and secure cloud architectures.

🤖

AI Engineer

Build and deploy AI applications on Azure.

🔐

Cloud Security

Protect cloud workloads, identities and infrastructure.

23 90-Day Azure Learning Plan

Period Learning Focus
Days 1–15 Cloud computing, Azure architecture and core services
Days 16–30 AZ-900 concepts and practical Azure labs
Days 31–45 Networking, storage, compute and identity
Days 46–60 Choose a specialization such as administration, DevOps, security, data or AI
Days 61–75 Build two practical Azure projects
Days 76–90 Certification preparation, revision and portfolio development

24 Azure Certification Roadmap 2026 Summary

🎯 Simple Roadmap

Cloud Fundamentals → AZ-900 → Choose a Career Path → Hands-On Projects → Role-Based Certification → Advanced Certification → Professional Experience

Goal Recommended Direction
New to Azure AZ-900
Azure Administrator AZ-900 → AZ-104
DevOps Engineer Azure fundamentals → AZ-104 or development background → AZ-400
Solutions Architect AZ-900 → AZ-104 → AZ-305
Azure AI AI-901 → AI-103 / current AI specialization
Azure Networking Azure fundamentals → AZ-700
Data & Analytics DP-900 → current Fabric / Azure data specialization

25 Final Advice for Your Azure Certification Journey

The best Azure certification is not necessarily the most advanced certification. It is the certification that matches the skills you want to develop and the job you want to perform.

Beginners should focus on cloud fundamentals before moving into role-based certifications. Experienced professionals can choose a specialization based on their existing background.

Most importantly, combine certification preparation with practical Azure projects, labs, troubleshooting exercises and real-world architecture practice.

🎯 Remember:

Certification + Hands-On Skills + Projects + Cloud Experience = Stronger Azure Career Profile

26 Frequently Asked Questions About Azure Certifications

What is the best Azure certification for beginners?

AZ-900 Azure Fundamentals is a common starting point for people who are new to Azure and cloud computing.

Is AZ-900 enough to get an Azure job?

AZ-900 provides foundational knowledge, but most technical Azure roles require deeper practical skills. Build hands-on projects and continue toward a role-specific certification.

What comes after AZ-900?

The next certification depends on your career goal. Azure administrators commonly move toward AZ-104, while architects can eventually progress toward AZ-305 and DevOps professionals can work toward AZ-400 after developing the required foundation.

Is AZ-104 difficult?

AZ-104 is an intermediate certification and is considerably more practical than a fundamentals exam. Hands-on experience with Azure administration can make preparation much easier.

What is the Azure Solutions Architect certification?

The Microsoft Certified: Azure Solutions Architect Expert certification is associated with AZ-305 and focuses on designing Azure solutions based on business and technical requirements.

What certification should I choose for Azure DevOps?

The Microsoft Certified: DevOps Engineer Expert certification uses AZ-400. Candidates need an appropriate prerequisite certification or qualifying background according to Microsoft's current certification requirements.

Is AI-900 still the current Azure AI Fundamentals exam?

No. AI-900 retired on June 30, 2026 and Microsoft replaced it with AI-901 for Azure AI Fundamentals.

What replaced AI-102?

AI-102 Azure AI Engineer Associate retired on June 30, 2026. Microsoft's newer AI direction includes the Azure AI Apps and Agents Developer Associate certification and AI-103 exam.

Is AZ-204 still available?

No. Microsoft retired the Azure Developer Associate certification and AZ-204 exam on July 31, 2026.

Should I learn Azure or AWS?

Both are valuable cloud platforms. Your choice should depend on the organizations, roles and technologies you want to work with. Azure can be particularly relevant in environments that use Microsoft's enterprise ecosystem.

Can Azure certifications help me get a job?

Certifications can help demonstrate structured knowledge, but they work best alongside practical cloud projects, troubleshooting ability, communication skills and relevant professional experience.

How long does it take to learn Azure?

The timeline depends on your previous IT experience and the certification you are targeting. A beginner can start with fundamentals and progressively develop role-specific skills through consistent study and hands-on practice.

🚀 Start Your Azure Cloud Career with Eduarn

Learn cloud computing, Microsoft Azure, DevOps, AI, data engineering and modern technology through practical, structured learning resources from Eduarn.

Learn Cloud → Master Azure → Build Projects → Earn Certifications → Grow Your Career

📚 Related Azure Topics:

Microsoft Azure  •  AZ-900  •  AZ-104  •  AZ-305  •  AZ-400  •  Azure DevOps  •  Azure Administrator  •  Azure AI  •  Cloud Computing  •  Cloud Security  •  Data Engineering

Learn Cloud Computing with Eduarn

Build practical skills in Azure, AWS, cloud computing, DevOps, Python, Data Science, AI, cybersecurity and software development.

🎓 Build Skills Beyond Certification

Certification is only one part of a successful cloud career. Continue learning through hands-on projects, cloud labs, architecture exercises and practical technology training.

🚀 Learn with Eduarn

Explore Eduarn learning resources covering cloud computing, Azure, AWS, DevOps, AI, Python, Data Science and modern technology careers.

About Eduarn

Eduarn is a learning and training platform focused on practical technology skills including cloud computing, AWS, Microsoft Azure, software development, data engineering, DevOps, cybersecurity, artificial intelligence, Python and Data Science.

Ready to Start Your Azure Journey?

Start with cloud fundamentals, choose your Azure career path, build practical projects and develop the skills employers need.

Start Learning with Eduarn →