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
MultiCloud Classroom notes 14/Apr/2026
DevOps Classroom notes 11/Apr/2026
Configuring sonar qube in github Navigate to sonar cloud Refer Here Signup using GIthub Authorize Sonar cloud to use github Create organization Create an organization with any name key -> auto generated Plan -> Free (free for all public repos) Import the repo from github Choose analysis method -> Github Actions Add token to Github… Continue reading DevOps Classroom notes 11/Apr/2026
MultiCloud Classroom notes 11/Apr/2026
MultiCloud Classroom notes 09/Apr/2026
MultiCloud Classroom notes 08/Apr/2026
MultiCloud Classroom notes 07/Apr/2026
DevOps Classroom notes 07/Apr/2026
Terraform contd Terraform takes a folder as a input Terraform considers all the files which have extension of .tf Prompt: According to google style guide for terraform give me standard terraform template structure from now on providers -> providers.tf basic resources -> main.tf and others as required variables -> variables.tf outputs -> outputs.tf Refer Here… Continue reading DevOps Classroom notes 07/Apr/2026
DevOps Classroom notes 06/Apr/2026
Terraform contd Scenario 1: Creating a network with subnets in AWS To write terraform templates we need to understand HCL (Hashicorp configuration language) Datatypes string number boolean list set object/map Manual Creating a network in AWS Prompt You are an expert in AWS I want to understand how to create a vpc in AWS Explain… Continue reading DevOps Classroom notes 06/Apr/2026
