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.
This commit is contained in:
Tim Martin 2016-08-16 11:46:56 -04:00 committed by Radek Simko
parent 84bbbfbe18
commit ddb62d026e
1 changed files with 10 additions and 10 deletions

View File

@ -14,18 +14,18 @@ Provides an Application AutoScaling Policy resource.
``` ```
resource "aws_appautoscaling_policy" "down" { resource "aws_appautoscaling_policy" "down" {
name = "scale-down" name = "scale-down"
service_namespace = "ecs" service_namespace = "ecs"
resource_id = "service/ecsclustername/servicename" resource_id = "service/ecsclustername/servicename"
scalable_dimension = "ecs:service:DesiredCount" scalable_dimension = "ecs:service:DesiredCount"
adjustment_type = "ChangeInCapacity" adjustment_type = "ChangeInCapacity"
cooldown = 60 cooldown = 60
metric_aggregation_type = "Maximum" metric_aggregation_type = "Maximum"
step_adjustment { step_adjustment {
metric_interval_lower_bound = 0 metric_interval_lower_bound = 0
scaling_adjustment = -1 scaling_adjustment = -1
} }
depends_on = ["aws_appautoscaling_target.target"] depends_on = ["aws_appautoscaling_target.target"]
} }
``` ```