File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,18 @@ Basic Usage
86
86
}
87
87
88
88
89
+ A note of caution
90
+ -----------------
91
+
92
+ Currently `aws_ecs_service.main.task_definition ` is ignored by lifecycle
93
+ cause task_definition is updated often via continuous ecs deployment.
94
+
95
+ Although it is a difficult decision, we hope to support dynamic lifecycle
96
+ featured by Terraform.
97
+
98
+ See detail: [#1](https://github.com/voyagegroup/tf_aws_ecs/issues/1)
99
+
100
+
89
101
Advanced Usage
90
102
==============
91
103
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ resource "aws_ecs_service" "main" {
30
30
# https://github.com/hashicorp/terraform/issues/3116
31
31
ignore_changes = [
32
32
" desired_count" ,
33
+ " task_definition" ,
33
34
]
34
35
}
35
36
You can’t perform that action at this time.
0 commit comments