From 09dca1ae94704b9193710e2f28ac768a8af6e7f2 Mon Sep 17 00:00:00 2001 From: CharlsBags <30460033+CharlsBags@users.noreply.github.com> Date: Mon, 21 Mar 2022 23:27:09 +0100 Subject: [PATCH] t2.micro unsupported --- demo-1/instance.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo-1/instance.tf b/demo-1/instance.tf index 16de144..050dd31 100644 --- a/demo-1/instance.tf +++ b/demo-1/instance.tf @@ -1,5 +1,5 @@ resource "aws_instance" "example" { ami = lookup(var.AMIS, var.AWS_REGION, "") # last parameter is the default value - instance_type = "t2.micro" + instance_type = "t3.micro" }