-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
52 lines (43 loc) · 1.11 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
51
52
variable "bucket_paths" {
type = list(string)
description = "list of bucket paths"
}
variable "region" {
type = string
description = "deployment region (e.g. asia-east1, us-east1)"
validation {
condition = !contains(
["global"],
var.region
)
error_message = "Err: region '${var.region}' is not supported."
}
}
variable "notification_channels" {
type = list(string)
description = "notication channel ids (['projects/[PROJECT_ID]/notificationChannels/[CHANNEL_ID]'])"
}
variable "name" {
type = string
description = "service name"
}
variable "cron_schedule" {
type = string
description = "cron schedule (e.g. * * * * *)"
}
variable "cron_time_zone" {
type = string
description = "cron time zone (e.g. Australia/Melbourne)"
}
variable "threshold" {
type = string
description = "object threshold before log is created"
}
variable "timeout" {
type = string
description = "timeout before build fails (e.g. 300s, 7200s)"
}
variable "service_account" {
type = string
description = "service account email"
}