Can you please bring a couse dedicated to Azure Terraform

I cant find any course which is dedicated to terraform + Azure in KodeKloud.
The terraform course which is present in Kodekloud is with Aws not with Azure.
Could you please bring Azure plus terraform course with proper labs.

The Terraform course focuses on authoring Terraform configuration for any public cloud. It uses AWS as an example. By referring to the official Terraform docs, you can write similar Terraform files for Azure as well.

As an example for Terraform on Azure, we do have a guide on creating an AKS cluster on Azure.

Yes, Terraform is just a tool for Infrastructure as Code (IaC). You need to learn how to use it to write IaC and read the provider documentation to create the services you want.

You should understand Terraform basics like variables, providers, modules, and state management. After that, learn about the cloud platform you want to work with, such as AWS or Azure, so you can understand their services and how they work together.

Then, you can use the provider documentation to create and manage those services with Terraform. When you understand cloud services and how they interact, it becomes much easier to write Terraform properly.