Merge pull request #54 from CharlsBags/patch-1

t2.micro is an unsupported machine type
This commit is contained in:
Edward Viaene
2022-03-21 21:26:52 -04:00
committed by GitHub
+1 -1
View File
@@ -6,6 +6,6 @@ provider "aws" {
resource "aws_instance" "example" {
ami = "ami-0d729a60"
instance_type = "t2.micro"
instance_type = "t3.micro"
}