-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.tf
68 lines (56 loc) · 1.04 KB
/
vars.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
variable "ip" {
type = string
sensitive = true
}
variable "ssh_port" {
type = string
default = "22"
sensitive = true
}
variable "ssh_user" {
type = string
sensitive = true
}
variable "connection_type" {
type = string
default = "ssh"
}
variable "ssh_key" {
type = string
default = "~\\.ssh\\key"
sensitive = true
}
variable "log_opts" {
type = string
default = "{{.ImageName}}|{{.Name}}|{{.ImageFullID}}|{{.FullID}}"
}
variable "grafana_admin_user" {
type = string
default = "grafana_user"
sensitive = true
}
variable "grafana_admin_password" {
type = string
default = "grafana_password"
sensitive = true
}
variable "grafana_port" {
type = number
default = 3000
}
variable "container_stop_timeout" {
type = number
default = 10
}
variable "container_read_timeout_milliseconds" {
type = number
default = 10000
}
variable "restart_policy" {
type = string
default = "always"
}
variable "managment_user" {
type = string
default = "root"
}