From df32c274b2a3e40338d791b5c7e2233a3e399dc2 Mon Sep 17 00:00:00 2001 From: Alexander Savchuk Date: Wed, 15 Mar 2017 01:58:09 +1300 Subject: [PATCH] Change example value to lower case in ECS service (#12661) According to the validator, the only acceptable values are 'cpu' and 'memory' (both lower case). https://github.com/hashicorp/terraform/blob/73f4acf0415925399c521982e2d48225ab611a52/builtin/providers/aws/validators.go#L722:L725 Updating the docs so that this example works out of the box. --- website/source/docs/providers/aws/r/ecs_service.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/providers/aws/r/ecs_service.html.markdown b/website/source/docs/providers/aws/r/ecs_service.html.markdown index c141b219a..8e8c9716f 100644 --- a/website/source/docs/providers/aws/r/ecs_service.html.markdown +++ b/website/source/docs/providers/aws/r/ecs_service.html.markdown @@ -27,7 +27,7 @@ resource "aws_ecs_service" "mongo" { placement_strategy { type = "binpack" - field = "CPU" + field = "cpu" } load_balancer {