-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
34 lines (28 loc) · 987 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
variable "kbconfig_path" {
description = "Path to kube config file"
default = "~/.kube/config"
}
variable "jenkins_image" {
description = "Docker jenkins image to deploy"
default = "jenkins/jenkins"
}
variable "local-storage-class-reclaim-policy" {
description = "Reclaim policy for the local storage class. Controls if persistent volumes are destroyed or not with terraform destroy"
default = "Retain"
}
variable "jenkins-volume-hostpath-path" {
description = "Path on the VM running K8s to bind the host_path type volume"
default = "/host_mnt/c/Users/Miguel_Martin/jenkins_data"
}
variable "jenkins-home-path" {
description = "Path of the directory holding jenkins files on docker image"
default = "/var/jenkins_home"
}
variable "ansible_image" {
description = "Docker ansible image to deploy"
default = "ansible/ansible"
}
variable "docker-socks-path" {
description = "Docker socks path"
default = "/var/run/docker.sock"
}