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
@@ -30,8 +46,10 @@ Module managed by [Marcin Cuber](https://github.com/marcincuber) [LinkedIn](http
30
46
31
47
| Name | Description | Type | Default | Required |
32
48
|------|-------------|:----:|:-----:|:-----:|
33
-
| cloudwatch\_log\_group\_name | CloudWatch log group name required to enabled logDriver in container definitions for ecs task. |map(string)|n/a|yes|
49
+
| cloudwatch\_log\_group\_name | CloudWatch log group name required to enabled logDriver in container definitions for ecs task. | string |`""`|no|
34
50
| container\_name | Optional name for the container to be used instead of name\_prefix. | string |`""`| no |
51
+
| docker\_volume\_configuration |\(Optional\) Used to configure a docker volume option "docker\_volume\_configuration". Full set of options can be found at https://www.terraform.io/docs/providers/aws/r/ecs\_task\_definition.html| list |`[]`| no |
52
+
| enabled | Whether to create the resources. Set to `false` to prevent the module from creating any resources | bool |`"true"`| no |
35
53
| name\_prefix | A prefix used for naming resources. | string | n/a | yes |
36
54
| placement\_constraints |\(Optional\) A set of placement constraints rules that are taken into consideration during task placement. Maximum number of placement\_constraints is 10. This is a list of maps, where each map should contain "type" and "expression" | list |`[]`| no |
37
55
| proxy\_configuration |\(Optional\) The proxy configuration details for the App Mesh proxy. This is a list of maps, where each map should contain "container\_name", "properties" and "type" | list |`[]`| no |
@@ -59,7 +77,7 @@ Module managed by [Marcin Cuber](https://github.com/marcincuber) [LinkedIn](http
59
77
| execution\_role\_unique\_id | The stable and unique string identifying the role. |
60
78
| task\_definition\_arn | Full ARN of the Task Definition \(including both family and revision\). |
61
79
| task\_definition\_family | The family of the Task Definition. |
62
-
| task\_definition\_td\_revision | The revision of the task in a particular family. |
80
+
| task\_definition\_revision | The revision of the task in a particular family. |
63
81
| task\_role\_arn | The Amazon Resource Name \(ARN\) specifying the ECS service role. |
64
82
| task\_role\_create\_date | The creation date of the IAM role. |
description="CloudWatch log group name required to enabled logDriver in container definitions for ecs task."
55
-
type=map(string)
60
+
type=string
61
+
default=""
56
62
}
57
63
58
64
variable"tags" {
@@ -92,3 +98,8 @@ variable "volume" {
92
98
default=[]
93
99
}
94
100
101
+
variable"docker_volume_configuration" {
102
+
type=list
103
+
description="(Optional) Used to configure a docker volume option \"docker_volume_configuration\". Full set of options can be found at https://www.terraform.io/docs/providers/aws/r/ecs_task_definition.html"
0 commit comments