From e5f70c909d7b4945d6a15c5caf896af3ea136053 Mon Sep 17 00:00:00 2001 From: CharlsBags <30460033+CharlsBags@users.noreply.github.com> Date: Mon, 21 Mar 2022 22:54:24 +0100 Subject: [PATCH] t2.micro is an unsupported machine type --- first-steps/instance.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/first-steps/instance.tf b/first-steps/instance.tf index 8ab8840..a0a0cdb 100644 --- a/first-steps/instance.tf +++ b/first-steps/instance.tf @@ -6,6 +6,6 @@ provider "aws" { resource "aws_instance" "example" { ami = "ami-0d729a60" - instance_type = "t2.micro" + instance_type = "t3.micro" }