From ddb62d026e07ee3bd1a34eca5a741233a5449f74 Mon Sep 17 00:00:00 2001 From: Tim Martin Date: Tue, 16 Aug 2016 11:46:56 -0400 Subject: [PATCH] Clean up whitespace in `aws_appautoscaling_policy` docs (#8228) The whitespace in the documentation for `aws_appautoscaling_policy` was very confusing. I believe it was due to a mix up of tabs and spaces. It's much prettier and easier to read now. --- .../aws/r/appautoscaling_policy.html.markdown | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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 f4cea7f59..9342b878f 100644 --- a/website/source/docs/providers/aws/r/appautoscaling_policy.html.markdown +++ b/website/source/docs/providers/aws/r/appautoscaling_policy.html.markdown @@ -14,18 +14,18 @@ Provides an Application AutoScaling Policy resource. ``` resource "aws_appautoscaling_policy" "down" { name = "scale-down" - service_namespace = "ecs" - resource_id = "service/ecsclustername/servicename" - scalable_dimension = "ecs:service:DesiredCount" + service_namespace = "ecs" + resource_id = "service/ecsclustername/servicename" + scalable_dimension = "ecs:service:DesiredCount" - adjustment_type = "ChangeInCapacity" - cooldown = 60 - metric_aggregation_type = "Maximum" + adjustment_type = "ChangeInCapacity" + cooldown = 60 + metric_aggregation_type = "Maximum" - step_adjustment { + step_adjustment { metric_interval_lower_bound = 0 - scaling_adjustment = -1 - } + scaling_adjustment = -1 + } depends_on = ["aws_appautoscaling_target.target"] } ``` @@ -71,4 +71,4 @@ must be greater than the lower bound. * `arn` - The ARN assigned by AWS to the scaling policy. * `name` - The scaling policy's name. * `adjustment_type` - The scaling policy's adjustment type. -* `policy_type` - The scaling policy's type. \ No newline at end of file +* `policy_type` - The scaling policy's type.