From aa8de2f8cf791184b48873ea91ac0ffcc21b22c8 Mon Sep 17 00:00:00 2001 From: Pawel Burchard Date: Wed, 25 Jan 2017 09:35:47 +0100 Subject: [PATCH] provider/aws: (#10587) Changing volumes in ECS task definition should force new revision. --- builtin/providers/aws/resource_aws_ecs_task_definition.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/builtin/providers/aws/resource_aws_ecs_task_definition.go b/builtin/providers/aws/resource_aws_ecs_task_definition.go index 5a81ec2b8..2734afba9 100644 --- a/builtin/providers/aws/resource_aws_ecs_task_definition.go +++ b/builtin/providers/aws/resource_aws_ecs_task_definition.go @@ -70,11 +70,13 @@ func resourceAwsEcsTaskDefinition() *schema.Resource { "name": { Type: schema.TypeString, Required: true, + ForceNew: true, }, "host_path": { Type: schema.TypeString, Optional: true, + ForceNew: true, }, }, },