forked from driftlessaf/terraform-infra-reconcilers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
33 lines (28 loc) · 839 Bytes
/
variables.tf
File metadata and controls
33 lines (28 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
variable "name" {
description = "Name of the workqueue"
type = string
}
variable "max_retry" {
description = "The maximum number of retry attempts before a task is moved to the dead letter queue"
type = number
default = 100
}
variable "concurrent_work" {
description = "The amount of concurrent work to dispatch at a given time"
type = number
}
variable "shards" {
description = "Number of workqueue shards. When > 1, dashboard shows per-shard metrics."
type = number
default = 1
}
variable "labels" {
description = "Additional labels to apply to the dashboard"
type = map(string)
default = {}
}
variable "alerts" {
description = "A mapping from alerting policy names to the alert ids to add to the dashboard"
type = map(string)
default = {}
}