Skip to content

Commit

Permalink
Add command to bgjob
Browse files Browse the repository at this point in the history
  • Loading branch information
qbart committed Oct 5, 2022
1 parent 7506414 commit b0389b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ecs-background-job/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ No modules.

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_container"></a> [container](#input\_container) | Service container configuration.<br> `mem_reservation_units` is used for allocation, exceeding `mem_units` will kill the container. <br> Memory units should be greater than reservation units. | <pre>object({<br> cpu_units = number<br> mem_units = number<br> mem_reservation_units = number<br> image = string<br> envs = map(string)<br> })</pre> | n/a | yes |
| <a name="input_container"></a> [container](#input\_container) | Service container configuration.<br> `mem_reservation_units` is used for allocation, exceeding `mem_units` will kill the container. <br> Memory units should be greater than reservation units. | <pre>object({<br> cpu_units = number<br> mem_units = number<br> mem_reservation_units = number<br> image = string<br> command = string<br> envs = map(string)<br> })</pre> | n/a | yes |
| <a name="input_deployment_maximum_percent"></a> [deployment\_maximum\_percent](#input\_deployment\_maximum\_percent) | Upper limit (as a percentage of the service's `desired_count`) of the number of running tasks that can be running in a service during a deployment. Not valid when using the `DAEMON` scheduling strategy. | `number` | `200` | no |
| <a name="input_deployment_minimum_healthy_percent"></a> [deployment\_minimum\_healthy\_percent](#input\_deployment\_minimum\_healthy\_percent) | Lower limit (as a percentage of the service's desiredCount) of the number of running tasks that must remain running and healthy in a service during a deployment. | `number` | `50` | no |
| <a name="input_desired_count"></a> [desired\_count](#input\_desired\_count) | Desired task count. | `number` | n/a | yes |
Expand Down
1 change: 1 addition & 0 deletions modules/ecs-background-job/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ variable "container" {
mem_units = number
mem_reservation_units = number
image = string
command = string
envs = map(string)
})
description = <<EOS
Expand Down

0 comments on commit b0389b7

Please sign in to comment.