-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
38 lines (38 loc) · 1001 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
37
38
variable "prefix" {
type = string
default = "admin-bot"
description = "Prefix for all GCP resources created by the module"
}
variable "image" {
type = string
description = "Docker image URI on gcr.io or pkg.dev with pwn.red/admin-bot base"
}
variable "recaptcha" {
type = object({
site = string
secret = string
})
default = null
sensitive = true
description = "Google reCAPTCHA credentials"
}
variable "submit_max_scale" {
type = number
default = 10
description = "Maximum concurrent submit instances"
}
variable "visit_max_scale" {
type = number
default = 10
description = "Maximum concurrent visit instances"
}
variable "submit_annotations" {
type = map(string)
default = {}
description = "Additional annotations to apply to submit instances"
}
variable "visit_annotations" {
type = map(string)
default = {}
description = "Additional annotations to apply to visit instances"
}