File tree 3 files changed +8
-5
lines changed
3 files changed +8
-5
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" {
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ terraform {
5
5
required_providers {
6
6
aws = {
7
7
source = " hashicorp/aws"
8
- version = " >= 5.0 .0, < 6.0.0"
8
+ version = " >= 5.77 .0, < 6.0.0"
9
9
}
10
10
}
11
11
}
You can’t perform that action at this time.
0 commit comments