Skip to content

Commit

Permalink
Update acceptance test to use t2.micro instances.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
tpounds authored and joshmyers committed Feb 18, 2016
1 parent c8e732a commit 093d6de
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit 093d6de

Please sign in to comment.