Azure DevOps YAML reference Refer Here Pipeline structure Azure pipelines are yaml files and are generally nameds as azure-pipeline.yaml A step can be any of this task | script | powershell | pwsh | bash | checkout | download | downloadBuild | getPackage | publish | template | reviewApp Azure DevOps Task list Refer Here… Continue reading DevOps Classroom notes 19/Apr/2026
DevOps Classroom notes 19/Apr/2026
Creating virtual machines in Azure Overview Refer Here for Steps Refer Here for changes done to add network interface public ip nsg Refer Here for adding variables Now lets create a virtual machine with the network interface which we created. Refer Here for the changes done Refer Here for varaibles added.
MultiCloud Classroom notes 19/Apr/2026
DevOps Classroom notes 18/Apr/2026
Reusable Github Workflows We can create reusable github workflow and use them with in same repo different repo Consider this repo Refer Here Refer Here for reusable workflow Refer Here for changes
DevOps Classroom notes 18/Apr/2026
Create a similar network in Azure Resource creation order Resource group Virtual network subnet Refer Here for changes Exercise: Ensure you create two types of subnets public private output section in terrform Refer Here for terraform output block Refer Here for changes done to display output in terraform. Exercise: While defining a variable we can… Continue reading DevOps Classroom notes 18/Apr/2026
MultiCloud Classroom notes 18/Apr/2026
MultiCloud Classroom notes 17/Apr/2026
MultiCloud Classroom notes 16/Apr/2026
DevOps Classroom notes 15/Apr/2026
Creating private and public subnets Refer Here for the changes done Terraform functions give me a list of terraform functions in a tabular form For most widely used functions give me atleast two examples one with aws reference and other with azure reference Lets apply tags with some convention name => “–––” locals Refer Here… Continue reading DevOps Classroom notes 15/Apr/2026
DevOps Classroom notes 14/Apr/2026
Adding multiple resources Terraform count meta argument helps in creating multiple number of resources Refer Here syntax resource ‘…’ ‘…’ { count = 5 …. } When you are accessing resources we need to use index Example resource ‘aws_subnet’ ‘subnets { count = 3 } # aws_subnets[0] => 1 subnet # aws_subnets[2] => 3 subnet… Continue reading DevOps Classroom notes 14/Apr/2026
