-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.tf
executable file
·76 lines (63 loc) · 1.44 KB
/
input.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
66
67
68
69
70
71
72
73
74
75
76
variable "dc" {
type = string
description = "Data center name"
}
variable "namespace" {
type = string
description = "Nomad namespace"
default = "default"
}
variable "enabled" {
type = bool
description = "If false, then no job is deployed"
default = true
}
variable "docker_tag" {
type = string
description = "Version of the docker image to use, defaults to latest"
default = "latest"
}
variable "service_dns" {
description = "Service discovery DNS"
type = list(string)
default = []
}
variable "service_type" {
description = "Run as a service or system"
type = string
default = "service"
}
variable "hosts" {
type = list(string)
description = "List of hosts to deploy on. If empty, one allocation will be created"
default = []
}
variable "access_token" {
description = "Github access token"
type = string
sensitive = true
}
variable "organization" {
description = "Github organization"
type = string
}
variable "name" {
description = "Github runner name"
type = string
default = ""
}
variable "group" {
description = "Github runner group"
type = string
default = ""
}
variable "labels" {
description = "Github runner labels"
type = list(string)
default = []
}
variable "data" {
description = "Data persistence directory, optional"
type = string
default = ""
}