From 00df2f14981d669548cd3303e05834ebde9fa059 Mon Sep 17 00:00:00 2001 From: Bill Wang Date: Tue, 16 May 2017 22:58:53 +1000 Subject: [PATCH] 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' --- .../docs/providers/aws/r/appautoscaling_policy.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/providers/aws/r/appautoscaling_policy.html.markdown b/website/source/docs/providers/aws/r/appautoscaling_policy.html.markdown index 4d2f217fa..ff1465ed4 100644 --- a/website/source/docs/providers/aws/r/appautoscaling_policy.html.markdown +++ b/website/source/docs/providers/aws/r/appautoscaling_policy.html.markdown @@ -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 }