Ao gerar tentar criar as instancias, aparece a mensagem de erro
Error: Error launching source instance: Unsupported: The requested configuration is currently not supported. Please check the documentation for supported configurations. status code: 400, request id: 02ddded0-e06d-4891-a034-63dc5692b53f
on main.tf line 6, in resource "aws_instance" "dev": 6: resource "aws_instance" "dev" {
como esta meu main.tf
provider "aws" {
version = "~> 2.0"
region = "us-east-2"
}
resource "aws_instance" "dev" {
count = 3
ami = "ami-0959e8feedaf156bf"
instance_type = "t2.micro"
key_name = "terraform-aws"
tags = {
Name = "dev${count.index}"
}
}