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" }