-
Notifications
You must be signed in to change notification settings - Fork 3
/
variables.tf
39 lines (32 loc) · 958 Bytes
/
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
variable "request_storage" {
description = "storage for your jenkins installation"
default = "5Gi"
}
variable "accessmode" {
description = "access mode for jenkins persistent volume claim"
default = "ReadWriteOnce"
}
variable "name" {
description = "name of your jenkins application, will be used as prefix for all manifests"
default = "jenkins"
}
variable "namespace" {
description = "namespace where all the jenkins resources will be created"
default = "jenkins"
}
variable "storageclass" {
description = "storageclass to use for creating persistent volume claim, defaults to gp2 of AWS"
default = "gp2"
}
variable "create_namespace" {
description = "to create the namespace or not"
type = bool
}
variable "jenkins_image" {
description = "docker image with the tag"
default = "jenkins/jenkins:latest"
}
variable "replicas" {
description = "no. of replicas you want"
default = "1"
}