Seguindo o passo a passo ao fazer o terraform apply a ação foi somente modificar a instancia existe e não cria outra. Segue o código
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.16"
}
}
required_version = ">= 1.2.0"
}
provider "aws" {
region = "us-east-1"
}
resource "aws_instance" "app_server" {
ami = "ami-08c40ec9ead489470"
key_name = "terraform-alura"
user_data = <<-EOF
#!/bin/bash
cd /home/ubuntu
echo "<h2> FEITO COM TERRAFORM </h2>" > index.html
nohup busybox httpd -f -p 8080 &
EOF
instance_type = "t2.micro"
tags = {
Name = "Teste AWS"
}
}