#iac
Read more stories on Hashnode
Articles with this tag
Task: 1.Create a VPC (Virtual Private Cloud) with CIDR block 10.0.0.0/16 resource "aws_vpc" "main" { cidr_block = "10.0.0.0/16" tags = { Name =...
Task 1: Find the purpose of basic Terraform commands that you'll use often terraform init: Initializes a Terraform working directory by downloading...
What is Terraform? Terraform is an infrastructure as code (IaC) tool that allows you to create, manage, and update infrastructure resources such as...
What's the difference? When it comes to the cloud, Infrastructure as Code (IaC) and Configuration Management (CM) are inseparable. With IaC, a...
What is Terraform❓ Terraform is an infrastructure as code (IaC) tool that allows you to build, change, and version infrastructure safely and...