From 164596880a871e34782a69ead54960842b19af76 Mon Sep 17 00:00:00 2001 From: Trevor Pounds Date: Tue, 9 Feb 2016 00:24:38 -0800 Subject: [PATCH] Update acceptance test to use t2.micro instances. The AWS free tier allows up to 750 hours on t2.micro instance types. It's better to use cheaper instances in case the resources are not cleaned up if a tests is canceled or crashes. --- builtin/providers/aws/resource_aws_autoscaling_group_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/aws/resource_aws_autoscaling_group_test.go b/builtin/providers/aws/resource_aws_autoscaling_group_test.go index a3aa6c47e..8d26320c0 100644 --- a/builtin/providers/aws/resource_aws_autoscaling_group_test.go +++ b/builtin/providers/aws/resource_aws_autoscaling_group_test.go @@ -627,7 +627,7 @@ resource "aws_autoscaling_group" "bar" { const testAccAWSAutoScalingGroupConfig_withPlacementGroup = ` resource "aws_launch_configuration" "foobar" { image_id = "ami-21f78e11" - instance_type = "c3.large" + instance_type = "t2.micro" } resource "aws_placement_group" "test" {