Skip to content

Commit 24bd1d8

Browse files
gpdennybryantbiggsantonbabenko
authored
feat: Add option to ignore load_balancer changes to ECS service (#81)
Co-authored-by: Bryant Biggs <[email protected]> Co-authored-by: Anton Babenko <[email protected]>
1 parent b9be574 commit 24bd1d8

File tree

3 files changed

+62
-3
lines changed

3 files changed

+62
-3
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/antonbabenko/pre-commit-terraform
3-
rev: v1.77.3
3+
rev: v1.80.0
44
hooks:
55
- id: terraform_fmt
66
- id: terraform_wrapper_module_for_each

docs/README.md

+60-2
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ This module supports creating a task execution IAM role in two different ways to
7373
The service sub-module creates one service that can be deployed onto a cluster. The service sub-module allows users to:
7474

7575
- Create an Amazon ECS service that ignores `desired_count`. This is intended for use when deploying task definition and container definition changes via Terraform
76-
- Create an Amazon ECS service that ignores `desired_count` and `task_definition`. This is intended to support a continuous deployment process that is responsible for updating the `image` and therefore the `task_definition` and `container_definition` while avoiding conflicts with Terraform.
76+
- Create an Amazon ECS service that ignores `desired_count` and `task_definition`, and `load_balancer`. This is intended to support a continuous deployment process that is responsible for updating the `image` and therefore the `task_definition` and `container_definition` while avoiding conflicts with Terraform.
7777
- Amazon ECS task resources with the various configurations detailed below under [ECS Task](https://github.com/terraform-aws-modules/terraform-aws-ecs/blob/master/docs/README.md#ecs-task)
7878

79-
Since Terraform does not support variables within `lifecycle {}` blocks, its not possible to allow users to dynamically select which arguments they wish to ignore within the resources defined in the modules. Therefore, any arguments that should be ignored are statically set within the module definition. To somewhat mimic the behavior of allowing users to opt in/out of ignoring certain arguments, the module supports two different service definitions; one that ignores the `desired_count`, and one that ignores the `desired_count` and `task_definition`. The motivation and reasoning for these ignored argument configurations is detailed below:
79+
Since Terraform does not support variables within `lifecycle {}` blocks, its not possible to allow users to dynamically select which arguments they wish to ignore within the resources defined in the modules. Therefore, any arguments that should be ignored are statically set within the module definition. To somewhat mimic the behavior of allowing users to opt in/out of ignoring certain arguments, the module supports two different service definitions; one that ignores the `desired_count`, and one that ignores `desired_count`, `task_definition` and `load_balancer`. The motivation and reasoning for these ignored argument configurations is detailed below:
8080

8181
- `desired_count` is always ignored by the service module. It is very common to have autoscaling enabled for Amazon ECS services, allowing the number of tasks to scale based on the workload requirements. The scaling is managed via the `desired_count` that is managed by application auto scaling. This would directly conflict with Terraform if it was allowed to manage the `desired_count` as well. In addition, users have the ability to disable auto scaling if it does not suit their workload. In this case, the `desired_count` would be initially set by Terraform, and any further changes would need to be managed separately (outside of the service module). Users can make changes to the desired count of the service through the AWS console, AWS CLI, or AWS SDKs. One example workaround using Terraform is provided below, similar to the [EKS equivalent](https://github.com/bryantbiggs/eks-desired-size-hack):
8282

@@ -143,6 +143,64 @@ This could be expanded further to include the entire container definitions argum
143143
<img src="./images/service.png" alt="ECS Service" width="40%">
144144
</p>
145145

146+
- When using the above `ignore_task_definition_changes` setting, changes to the `load_balancer` argument are also ignored. This is intended to support the use of [Blue/Green deployment with CodeDeploy](https://docs.aws.amazon.com/AmazonECS/latest/userguide/deployment-type-bluegreen.html) which changes the the service's load balancer configuration. (Note: the ignored changes to the `load_balancer` were added after the fact which is why the variable name does not reflect this behavior. In a future major release, this variable will be updated to better reflect its behavior)
147+
148+
```hcl
149+
module "ecs_service" {
150+
source = "terraform-aws-modules/ecs/aws//modules/service"
151+
152+
# ... omitted for brevity
153+
154+
ignore_task_definition_changes = true
155+
}
156+
157+
resource "aws_lb_target_group" "this" {
158+
for_each = {
159+
blue = {},
160+
green = {}
161+
}
162+
163+
name = each.key
164+
165+
# ... omitted for brevity
166+
}
167+
168+
resource "aws_codedeploy_app" "this" {
169+
name = "my-app"
170+
compute_platform = "ECS"
171+
}
172+
173+
resource "aws_codedeploy_deployment_group" "this" {
174+
deployment_group_name = "my-deployment-group"
175+
app_name = aws_codedeploy_app.this.name
176+
177+
deployment_config_name = "CodeDeployDefault.ECSAllAtOnce"
178+
179+
deployment_style {
180+
deployment_option = "WITH_TRAFFIC_CONTROL"
181+
deployment_type = "BLUE_GREEN"
182+
}
183+
184+
# ... omitted for brevity
185+
186+
load_balancer_info {
187+
target_group_pair_info {
188+
prod_traffic_route {
189+
listener_arns = ["my-listener-arn"]
190+
}
191+
192+
target_group {
193+
name = aws_lb_target_group.this["blue"].name
194+
}
195+
196+
target_group {
197+
name = aws_lb_target_group.this["green"].name
198+
}
199+
}
200+
}
201+
}
202+
```
203+
146204
### Task
147205

148206
ECS tasks are the byproduct of task definitions and task sets. In addition to what has been described above, the service module supports the following task level configurations:

modules/service/main.tf

+1
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,7 @@ resource "aws_ecs_service" "ignore_task_definition" {
392392
ignore_changes = [
393393
desired_count, # Always ignored
394394
task_definition,
395+
load_balancer,
395396
]
396397
}
397398
}

0 commit comments

Comments
 (0)