-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
52 lines (44 loc) · 1.2 KB
/
variables.tf
File metadata and controls
52 lines (44 loc) · 1.2 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
49
50
51
52
variable "agent_id" {
description = "The ID of the Coder agent to install Ray on"
type = string
}
variable "slug" {
description = "The slug for the Ray Dashboard app"
type = string
default = "ray-dashboard"
}
variable "display_name" {
description = "The display name for the Ray Dashboard app"
type = string
default = "Ray Dashboard"
}
variable "icon" {
description = "The icon URL for the Ray Dashboard app"
type = string
default = "https://raw.githubusercontent.com/ray-project/ray/master/doc/source/images/ray_logo.png"
}
variable "port" {
description = "The port number for the Ray Dashboard"
type = number
default = 8265
}
variable "subdomain" {
description = "Whether to use a subdomain for the Ray Dashboard"
type = bool
default = true
}
variable "share" {
description = "The sharing level for the Ray Dashboard app"
type = string
default = "owner"
}
variable "healthcheck_interval" {
description = "Health check interval in seconds"
type = number
default = 5
}
variable "healthcheck_threshold" {
description = "Health check threshold"
type = number
default = 10
}