-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
47 lines (40 loc) · 1.02 KB
/
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
39
40
41
42
43
44
45
46
47
variable "name" {
type = string
description = "App name to be used for namespace, service, and deployment."
default = "portainer"
}
variable "image" {
type = string
description = "Docker image."
default = "portainer/portainer-k8s-beta:linux-amd64"
}
variable "labels" {
type = map(string)
description = "App labels to be used for namespace, service, and deployment."
default = {}
}
variable "service_type" {
type = string
description = "Determines how the service is exposed"
default = "ClusterIP"
}
variable "http_port" {
type = number
description = "LoadBalancer HTTP port."
default = 9000
}
variable "edge_port" {
type = number
description = "Agent EDGE port."
default = 8000
}
variable "storage_class" {
type = string
description = "Persisted Volume storage class"
default = "local-path"
}
variable "storage_size" {
type = string
description = "Persisted Volume storage size"
default = "128Mi"
}