Skip to content

Commit 3e715a2

Browse files
committed
make the load balancer optional
1 parent c7f5810 commit 3e715a2

File tree

3 files changed

+96
-50
lines changed

3 files changed

+96
-50
lines changed

main.tf

+8-4
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,14 @@ resource "aws_ecs_service" "service" {
6666
}
6767
}
6868

69-
load_balancer {
70-
target_group_arn = var.tg_arn
71-
container_name = var.lb_container_name
72-
container_port = var.lb_container_port
69+
dynamic "load_balancer" {
70+
for_each = var.load_balancer
71+
72+
content {
73+
container_name = load_balancer.value.container_name
74+
container_port = load_balancer.value.container_port
75+
target_group_arn = load_balancer.value.target_group_arn
76+
}
7377
}
7478

7579
# Track the latest ACTIVE revision

test/main.tf

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ module "minimal" {
77
service_env = ""
88
container_def_json = ""
99
desired_count = "1"
10-
lb_container_name = ""
11-
lb_container_port = "80"
12-
tg_arn = ""
1310
ecsServiceRole_arn = ""
1411
}
1512

@@ -21,17 +18,20 @@ module "full" {
2118
service_env = ""
2219
container_def_json = ""
2320
desired_count = "1"
24-
lb_container_name = ""
25-
lb_container_port = "80"
26-
tg_arn = ""
21+
22+
load_balancer = [{
23+
target_group_arn = ""
24+
container_name = ""
25+
container_port = 80
26+
}]
2727
ecsServiceRole_arn = ""
2828

2929
availability_zone_rebalancing = "ENABLED"
3030
volumes = []
3131
task_role_arn = ""
3232
network_mode = "bridge"
33-
deployment_maximum_percent = "200"
34-
deployment_minimum_healthy_percent = "50"
33+
deployment_maximum_percent = 200
34+
deployment_minimum_healthy_percent = 50
3535
ordered_placement_strategy = [
3636
{
3737
type = "spread"

variables.tf

+80-38
Original file line numberDiff line numberDiff line change
@@ -2,50 +2,73 @@
22
* Required Variables
33
*/
44

5-
variable "cluster_id" {
6-
type = string
7-
}
8-
95
variable "service_name" {
10-
type = string
11-
}
12-
13-
variable "service_env" {
14-
type = string
6+
description = "Name of the service, up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens."
7+
type = string
158
}
169

1710
variable "container_def_json" {
18-
type = string
11+
description = "A list of valid container definitions provided as a single valid JSON document."
12+
type = string
1913
}
2014

2115
variable "desired_count" {
22-
type = string
16+
description = "The number of instances of the task definition to place and keep running."
17+
type = number
2318
}
2419

25-
variable "lb_container_name" {
26-
type = string
27-
}
2820

29-
variable "lb_container_port" {
30-
type = string
21+
/*
22+
* Optional Variables
23+
*/
24+
25+
variable "cluster_id" {
26+
description = "ARN of the ECS cluster in which to place this service. If not specified, the default cluster is used."
27+
type = string
28+
default = null
3129
}
3230

33-
variable "tg_arn" {
34-
type = string
31+
variable "service_env" {
32+
description = "Name of environment, used in naming task definition. Example: \"prod\"."
33+
type = string
34+
default = "prod"
35+
}
36+
37+
variable "load_balancer" {
38+
description = <<-EOF
39+
Configuration block for load balancers.
40+
Attributes:
41+
target_group_arn - ARN of the Load Balancer target group to associate with the service.
42+
container_name - Container name to associate with the load balancer (as it appears in container definition).
43+
container_port - Port on the container to associate with the load balancer.
44+
Example:
45+
[{
46+
target_group_arn = aws_alb_target_group.this.arn
47+
container_name = "app"
48+
container_port = 80
49+
}]
50+
EOF
51+
type = list(object({
52+
target_group_arn = string
53+
container_name = string
54+
container_port = number
55+
}))
56+
default = []
3557
}
3658

3759
variable "ecsServiceRole_arn" {
38-
type = string
60+
description = <<-EOF
61+
ARN of the IAM role that allows Amazon ECS to make calls to your load balancer on your behalf. Required if using a
62+
load balancer.
63+
EOF
64+
type = string
65+
default = null
3966
}
4067

41-
/*
42-
* Optional Variables
43-
*/
44-
4568
variable "availability_zone_rebalancing" {
46-
description = <<EOF
47-
"When enabled, ECS automatically redistributes tasks within a service across Availability Zones. Must be
48-
"either \"ENABLED\" or \"DISABLED\"."
69+
description = <<-EOF
70+
When enabled, ECS automatically redistributes tasks within a service across Availability Zones. Must be
71+
either "ENABLED" or "DISABLED".
4972
EOF
5073
type = string
5174
default = "DISABLED"
@@ -58,36 +81,55 @@ variable "volumes" {
5881
}
5982

6083
variable "task_role_arn" {
61-
type = string
62-
default = ""
84+
description = "ARN of IAM role that allows your Amazon ECS container task to make calls to other AWS services."
85+
type = string
86+
default = null
6387
}
6488

6589
variable "network_mode" {
66-
type = string
67-
default = "bridge"
90+
description = <<-EOF
91+
Docker networking mode to use for the containers in the task. Valid values are "none", "bridge", "awsvpc",
92+
and "host".
93+
EOF
94+
type = string
95+
default = "bridge"
6896
}
6997

7098
variable "deployment_maximum_percent" {
71-
type = string
72-
default = 200
99+
description = <<-EOF
100+
Upper limit (as a percentage of the service's desiredCount) of the number of running tasks that can be running in a
101+
service during a deployment.
102+
EOF
103+
type = number
104+
default = 200
73105
}
74106

75107
variable "deployment_minimum_healthy_percent" {
76-
type = string
77-
default = 50
108+
description = <<-EOF
109+
Lower limit (as a percentage of the service's desiredCount) of the number of running tasks that must remain running
110+
and healthy in a service during a deployment.
111+
EOF
112+
type = number
113+
default = 50
78114
}
79115

80116
variable "ordered_placement_strategy" {
81-
description = ""
82-
type = list(any)
117+
description = "Service level strategy rules that are taken into consideration during task placement."
118+
type = list(object({
119+
type = string
120+
field = string
121+
}))
83122
default = [{
84123
type = "spread"
85124
field = "instanceId"
86125
}]
87126
}
88127

89128
variable "execution_role_arn" {
90-
description = "The IAM role that allows ECS to make AWS API calls on your behalf, such as to pull container images from ECR when using Fargate or to reference secrets from SSM Parameter Store."
129+
description = <<-EOF
130+
The IAM role that allows ECS to make AWS API calls on your behalf, such as to pull container images from ECR when
131+
using Fargate or to reference secrets from SSM Parameter Store.
132+
EOF
91133
type = string
92-
default = ""
134+
default = null
93135
}

0 commit comments

Comments
 (0)