t2.micro unsupported

This commit is contained in:
CharlsBags
2022-03-21 23:27:09 +01:00
committed by GitHub
parent 5b5aad79ee
commit 09dca1ae94
+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"
}