Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
atsushi-ishibashi committed Apr 30, 2018
1 parent 77c8928 commit db16bf2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions aws/resource_aws_ecs_service_test.go
Original file line number Diff line number Diff line change
@@ -862,7 +862,7 @@ resource "aws_ecs_service" "mongo" {
func testAccAWSEcsServiceWithMultiPlacementStrategy(clusterName, tdName, svcName string) string {
return fmt.Sprintf(`
resource "aws_ecs_cluster" "default" {
name = "%s"
name = "%s"
}
resource "aws_ecs_task_definition" "mongo" {
@@ -886,12 +886,12 @@ resource "aws_ecs_service" "mongo" {
task_definition = "${aws_ecs_task_definition.mongo.arn}"
desired_count = 1
ordered_placement_strategy {
type = "binpack"
field = "memory"
type = "binpack"
field = "memory"
}
ordered_placement_strategy {
field = "host"
type = "spread"
ordered_placement_strategy {
field = "host"
type = "spread"
}
}
`, clusterName, tdName, svcName)

0 comments on commit db16bf2

Please sign in to comment.