-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
65 lines (55 loc) · 1.4 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
53
54
55
56
57
58
59
60
61
62
63
64
65
variable "project_id" {
type = string
description = "The ID of the Google project where the resources will be created"
}
variable "google_service_account" {
description = "Service account information"
type = object({
sa = object({
email = string
})
})
}
variable "account_id" {
type = string
description = "account_id of Cloud Run service account"
default = null
}
variable "image_url" {
type = string
description = "URL of image e.g. gcr.io/project/image-name:latest"
default = null
}
variable "cloud_run_name" {
type = string
description = "Name of Cloud Run job"
default = null
}
variable "job_name" {
type = string
description = "The name of the scheduled job to run"
default = null
}
variable "job_description" {
type = string
description = "Additional text to describe the job"
default = null
}
variable "job_schedule" {
type = string
description = "The job frequency, in cron syntax"
default = "0 2 * * *"
}
variable "time_zone" {
type = string
description = "Time zone to specify for job scheduler"
default = "America/New_York"
}
variable "region" {
type = string
description = "The region in which resources will be applied."
}
variable "secret_id" {
type = string
description = "Name of secret in secret manager containing Synapse auth token"
}