Merge pull request #55 from CharlsBags/patch-2

t2.micro unsupported
This commit is contained in:
Edward Viaene
2022-03-21 21:26:38 -04:00
committed by GitHub
+1 -1
View File
@@ -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"
}