Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: increase backlog alarm minutes #47

Merged
merged 1 commit into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Terraform module which creates a sqs queue
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_additional_tag_map"></a> [additional\_tag\_map](#input\_additional\_tag\_map) | Additional key-value pairs to add to each map in `tags_as_list_of_maps`. Not added to `tags` or `id`.<br>This is for some rare cases where resources want additional configuration of tags<br>and therefore take a list of maps with tag key, value, and additional configuration. | `map(string)` | `{}` | no |
| <a name="input_alarm"></a> [alarm](#input\_alarm) | The details of the alarm such as datapoints to alarm, evaluation periods, backlog minutes, period, and threshold. | <pre>object({<br> datapoints_to_alarm = optional(number, 3)<br> description = optional(string, null)<br> evaluation_periods = optional(number, 3)<br> backlog_minutes = optional(number, 3)<br> period = optional(number, 60)<br> threshold = optional(number, 0)<br> })</pre> | `{}` | no |
| <a name="input_alarm"></a> [alarm](#input\_alarm) | The details of the alarm such as datapoints to alarm, evaluation periods, backlog minutes, period, and threshold. | <pre>object({<br> datapoints_to_alarm = optional(number, 3)<br> description = optional(string, null)<br> evaluation_periods = optional(number, 3)<br> backlog_minutes = optional(number, 5)<br> period = optional(number, 60)<br> threshold = optional(number, 0)<br> })</pre> | `{}` | no |
| <a name="input_alarm_enabled"></a> [alarm\_enabled](#input\_alarm\_enabled) | Defines if the alarm should be created. | `bool` | `false` | no |
| <a name="input_alarm_topic_arn"></a> [alarm\_topic\_arn](#input\_alarm\_topic\_arn) | The ARN of the SNS Topic used for notifying about alarm/ok messages. | `string` | `null` | no |
| <a name="input_attributes"></a> [attributes](#input\_attributes) | ID element. Additional attributes (e.g. `workers` or `cluster`) to add to `id`,<br>in the order they appear in the list. New attributes are appended to the<br>end of the list. The elements of the list are joined by the `delimiter`<br>and treated as a single ID element. | `list(string)` | `[]` | no |
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ variable "alarm" {
datapoints_to_alarm = optional(number, 3)
description = optional(string, null)
evaluation_periods = optional(number, 3)
backlog_minutes = optional(number, 3)
backlog_minutes = optional(number, 5)
period = optional(number, 60)
threshold = optional(number, 0)
})
Expand Down
Loading