-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
49 lines (42 loc) · 1.07 KB
/
Copy pathvariables.tf
File metadata and controls
49 lines (42 loc) · 1.07 KB
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
variable "selenium_chart_version" {
description = "Selenium chart version. More info: https://github.com/helm/charts/tree/master/stable/selenium"
type = string
default = "1.1.2"
}
variable "ui_service_type" {
description = "Selenium hub service type"
default = "NodePort"
}
variable "chrome_replicas" {
description = "Number of selenium chrome replicas"
default = 1
}
variable "chrome_tag" {
description = "Version of chrome in selenium replicas"
type = string
default = "3.141.59"
}
variable "firefox_replicas" {
description = "Number of selenium statefulset replica"
default = 1
}
variable "firefox_tag" {
description = "Version of Firefox on the selenium replicas"
type = string
default = "3.141.59"
}
variable "hub_tag" {
description = "tag"
type = string
default = "3.141.59"
}
variable "hub_javaOpts" {
description = "javaOpts"
type = string
default = "-Xmx400m"
}
variable "chrome_javaOpts" {
description = "javaOpts"
type = string
default = "-Xmx400m"
}