Terraform providers and their significanceTerraform providers and their significance in managing resources across various cloud platforms. Terraform creates and manages resources on cloud platforms and other services through their application programming interfaces (APIs). Providers enable T...Jan 26, 2024·4 min read
Introduction and Basics of Terraform1 Q. What is Terraform and how can it help you manage infrastructure as code? Terraform is an open-source infrastructure as code (IaC) tool developed by HashiCorp. It is used to automate the provisioning and management of infrastructure resources, su...Sep 12, 2023·8 min read
Python Libraries for DevOpsTask 1: Create a Dictionary in Python and write it to a json File. Task 2: Read a json file services.json kept in this folder and print the service names of every cloud service provider. Use Python's json module to parse the JSON data and then ite...Sep 9, 2023·1 min read
Python - Data Types and Data Structures🚩Data Types: Data type is a classification that specifies which type of value a variable can hold or which operations can be performed on it. Data types are an essential concept in programming because they help ensure data integrity, memory allocati...Sep 6, 2023·4 min read
Python (Programming Language)✅ Basics of Python (Installation and Datatypes) ✅ Downloading the Python Installer Go to the below link and download the latest version of Python. https://www.python.org/downloads Run the Executable Installer After the installer is downloaded, doub...Sep 5, 2023·2 min read
📜Cheatsheet - Linux /Git/GitHub🐧Linux Commands ls - The most frequently used command in Linux to list directories pwd - Print working directory command in Linux cd - Linux command to navigate through directories mkdir - Command used to create directories in Linux mv - Move o...Sep 4, 2023·7 min read
Advanced Git and GitHub for DevOps Engineers (Part -2)Git Stash: Git stash is a command that allows you to temporarily save changes you have made in your working directory, without committing them. This is useful when you need to switch to a different branch to work on something else, but you don't want...Sep 1, 2023·3 min read