generated from cloudposse/terraform-example-module
-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathvariables.tf
36 lines (33 loc) · 904 Bytes
/
variables.tf
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
34
35
36
variable "opsgenie_provider_api_key" {
type = string
description = "The API Key for the Opsgenie Integration. If omitted, the OPSGENIE_API_KEY environment variable is used"
default = null
}
variable "de_duplication_action" {
type = object({
de_duplication_action_type = string
count = number
duration = object({
time_unit = string
time_amount = number
})
})
description = "The de-duplication action for the notification policy"
default = null
}
variable "delay_action" {
type = object({
delay_option = string
duration = object({
time_unit = string
time_amount = number
})
})
description = "The delay action for the notification policy"
default = null
}
variable "suppress" {
type = bool
description = "The suppress flag for the notification policy"
default = null
}