File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ module "full" {
26
26
tg_arn = " "
27
27
ecsServiceRole_arn = " "
28
28
29
- availability_zone_rebalancing = true
29
+ availability_zone_rebalancing = " ENABLED "
30
30
volumes = []
31
31
task_role_arn = " "
32
32
network_mode = " bridge"
Original file line number Diff line number Diff line change @@ -43,9 +43,12 @@ variable "ecsServiceRole_arn" {
43
43
*/
44
44
45
45
variable "availability_zone_rebalancing" {
46
- description = " When true, ECS automatically redistributes tasks within a service across Availability Zones"
47
- type = bool
48
- default = false
46
+ description = << EOF
47
+ "When enabled, ECS automatically redistributes tasks within a service across Availability Zones. Must be
48
+ "either \"ENABLED\" or \"DISABLED\"."
49
+ EOF
50
+ type = string
51
+ default = " DISABLED"
49
52
}
50
53
51
54
variable "volumes" {
You can’t perform that action at this time.
0 commit comments