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
* add task definition iam role support
* removed syntax error
* fix null value error
* fixed conditional for ecs_task_role_arn
* Updated README and example
| <aname="input_ecs_cluster_arn"></a> [ecs\_cluster\_arn](#input\_ecs\_cluster\_arn)| The ECS Cluster where the scheduled task will run |`any`| n/a | yes |
79
79
| <aname="input_ecs_execution_task_role_arn"></a> [ecs\_execution\_task\_role\_arn](#input\_ecs\_execution\_task\_role\_arn)| (Required) The task definition execution role. The Amazon Resource Name (ARN) of the IAM role to be used for this target when the rule is triggered. |`any`| n/a | yes |
80
+
| <aname="input_ecs_task_role_arn"></a> [ecs\_task\_role\_arn](#input\_ecs\_task\_role\_arn)| (Optional) The task definition role. The Amazon Resource Name (ARN) of the IAM role to be used for this target when the rule is triggered. |`any`|`null`| no |
80
81
| <aname="input_event_rule_description"></a> [event\_rule\_description](#input\_event\_rule\_description)| (Optional) The description of the rule. |`any`|`null`| no |
81
82
| <aname="input_event_rule_event_bus_name"></a> [event\_rule\_event\_bus\_name](#input\_event\_rule\_event\_bus\_name)| (Optional) The event bus to associate with this rule. If you omit this, the default event bus is used. |`any`|`null`| no |
82
83
| <aname="input_event_rule_event_pattern"></a> [event\_rule\_event\_pattern](#input\_event\_rule\_event\_pattern)| (Optional) The event pattern described a JSON object. At least one of schedule\_expression or event\_pattern is required. |`any`|`null`| no |
description="(Required) The task definition execution role. The Amazon Resource Name (ARN) of the IAM role to be used for this target when the rule is triggered."
70
70
}
71
71
72
+
variable"ecs_task_role_arn" {
73
+
description="(Optional) The task definition role. The Amazon Resource Name (ARN) of the IAM role to be used for this target when the rule is triggered."
74
+
default=null
75
+
}
76
+
72
77
variable"event_target_ecs_target_group" {
73
78
description="(Optional) Specifies an ECS task group for the task. The maximum length is 255 characters."
0 commit comments