You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,9 +27,11 @@ module "ecs" {
27
27
28
28
capacity_providers = ["FARGATE", "FARGATE_SPOT"]
29
29
30
-
default_capacity_provider_strategy = {
31
-
capacity_provider = "FARGATE_SPOT"
32
-
}
30
+
default_capacity_provider_strategy = [
31
+
{
32
+
capacity_provider = "FARGATE_SPOT"
33
+
}
34
+
]
33
35
34
36
tags = {
35
37
Environment = "Development"
@@ -77,7 +79,7 @@ module "ecs" {
77
79
| capacity\_providers | List of short names of one or more capacity providers to associate with the cluster. Valid values also include FARGATE and FARGATE\_SPOT. |`list(string)`|`[]`| no |
78
80
| container\_insights | Controls if ECS Cluster has container insights enabled |`bool`|`false`| no |
79
81
| create\_ecs | Controls if ECS should be created |`bool`|`true`| no |
80
-
| default\_capacity\_provider\_strategy | The capacity provider strategy to use by default for the cluster. Can be one or more. |`map(any)`|`{}`| no |
82
+
| default\_capacity\_provider\_strategy | The capacity provider strategy to use by default for the cluster. Can be one or more. |`list(map(any))`|`[]`| no |
81
83
| name | Name to be used on all the resources as identifier, also the name of the ECS cluster |`string`|`null`| no |
82
84
| tags | A map of tags to add to ECS Cluster |`map(string)`|`{}`| no |
0 commit comments