Terraform
an open-source infrastructure-as-code software tool created by HashiCorp.
Last updated
an open-source infrastructure-as-code software tool created by HashiCorp.
Last updated
terraform {
backend "s3" {
bucket = "udacity-tf-tscotto"
key = "terraform/terraform.tfstate"
region = "us-east-2"
}
}hcprovider "aws" {
region = "us-east-2"
}resource "aws_instance" "aws_linux" {
ami = ami-074cce78125f09d61
count = var.instance_count // (2)
instance_type = t2.micro
tags = {
Name = "EC2 Instance"
}
}variable "instance_count" {
description = "The desired number of EC2 instances."
default = 2
}