NIHAL MOHAMAD ARIF PAPApapanihal360.hashnode.dev·May 8, 2024Automating Cloud Infrastructure with Terraform: A Step by Step Guide🚀#provider terraform { required_providers { aws = { source = "hashicorp/aws" version = "~> 5.0" } } } # Configure the AWS Provider provider "aws" { region = "us-west-1" } #EC2 resource "aws_instance" "app_server" { a...2 likesTerraform
Sourav Kumarblog.souravk.cloud·Nov 19, 2023Terraform: Infrastructure as CodeIn today's blog, we're going to explore the world of Infrastructure as Code (IAC), a revolutionary approach to managing and provisioning IT infrastructure. Terraform has emerged as a game-changer in the realm of DevOps, enabling organizations to auto...1 like#IaC
Vishal Bhosalevishalb.hashnode.dev·May 14, 2023IAC (Infrastructure As Code)Infrastructure as Code (IAC) is a practice that involves managing and provisioning infrastructure using code, typically in the form of scripts or declarative language files. This approach offers several benefits and has gained popularity, particularl...Infrastructure as Code (IaC) Service Market
Ashutosh Mahajanashutoshamblogs.hashnode.dev·May 5, 2023Day 1: Introduction to TerraformIntroduction Infrastructure as Code (IaC) is the process of managing and provisioning computing infrastructure and related services in an automated, programmatic way, using code. There are several tools available for implementing IaC, and one of the ...46 readsinfrastructure
ILYAS RUFAIrufilboss.hashnode.dev·Apr 2, 2023Infrastructure as CodeInfrastructure as Code (IaC) is a method of managing and provisioning infrastructure resources using machine-readable definition files, rather than manually configuring them. It allows for the automation and repeatability of infrastructure deployment...10 likes·60 readsDevOpsTerraform