fix the metric bound in sample

The author made this mistake at the beginning. With the original sample, you can't create `aws_appautoscaling_policy` properly. No threshold data in it. It is hard to troubleshoot this issue because there is no error to run the sample with `metric_interval_lower_bound = 0'
This commit is contained in:
Bill Wang 2017-05-16 22:58:53 +10:00 committed by GitHub
parent 086af4bd62
commit 00df2f1498
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ resource "aws_appautoscaling_policy" "ecs_policy" {
service_namespace = "ecs"
step_adjustment {
metric_interval_lower_bound = 0
metric_interval_upper_bound = 0
scaling_adjustment = -1
}