forked from provectus/sak-incubator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
62 lines (52 loc) · 1.43 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# For depends_on queqe
variable "module_depends_on" {
default = []
type = list(any)
description = "A list of explicit dependencies"
}
variable "domains" {
type = list(string)
default = []
description = "A list of domains to use for ingresses"
}
variable "jenkins_password" {
description = "Password for jenkins admin"
default = "password"
}
variable "config_path" {
description = "location of the kubeconfig file"
default = "~/.kube/config"
}
variable "environment" {
type = string
default = null
description = "A value that will be used in annotations and tags to identify resources with the `Environment` key"
}
variable "project" {
type = string
default = null
description = "A value that will be used in annotations and tags to identify resources with the `Project` key"
}
variable "cluster_name" {
type = string
default = null
description = "A name of the Amazon EKS cluster"
}
variable "cluster_oidc_arn" {
type = string
description = "An OIDC arn of the EKS cluster"
default = ""
}
variable "cluster_oidc_url" {
type = string
description = "An OIDC endpoint of the EKS cluster"
default = ""
}
variable "agent_policy" {
description = "Policy attached to Jenkins agents IAM role"
default = ""
}
variable "master_policy" {
description = "Policy attached to Jenkins master IAM role"
default = ""
}