-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
50 lines (42 loc) · 1.23 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
variable "name" {
type = string
description = "Name of the notification configuration"
}
variable "destination_type" {
type = string
description = "The type of notification configuration payload to send"
}
variable "email_addresses" {
type = list(string)
default = null
description = "A list of email addresses"
}
variable "email_user_ids" {
type = list(string)
default = null
description = "A list of user IDs"
}
variable "enabled" {
type = bool
default = false
description = "Whether the notification configuration should be enabled or not"
}
variable "token" {
type = string
default = null
description = "A write-only secure token for the notification configuration"
}
variable "triggers" {
type = list(string)
default = []
description = "The array of triggers for which this notification configuration will send notifications"
}
variable "url" {
type = string
default = null
description = "The HTTP or HTTPS URL of the notification configuration where notification requests will be made"
}
variable "workspace_id" {
type = string
description = "The id of the workspace that owns the notification configuration"
}