provider/aws: Update aws_appautoscaling_target_test (#9736)

The update of the test was causing a test failure - it was setting
desired_count to 1 when miz_size was set to 2 - this was causing a
perpetual diff in the test
This commit is contained in:
Paul Stack 2016-10-31 10:40:35 +00:00 committed by GitHub
parent 3accd5485a
commit 92f48ad243
1 changed files with 1 additions and 1 deletions

View File

@ -284,7 +284,7 @@ resource "aws_ecs_service" "service" {
name = "foobar"
cluster = "${aws_ecs_cluster.foo.id}"
task_definition = "${aws_ecs_task_definition.task.arn}"
desired_count = 1
desired_count = 2
deployment_maximum_percent = 200
deployment_minimum_healthy_percent = 50