-
Notifications
You must be signed in to change notification settings - Fork 23
/
variables.tf
94 lines (78 loc) · 1.87 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
variable branch {
type = string
description = "describe your variable"
default = "init"
}
variable owner {
type = string
description = "describe your variable"
default = "provectus"
}
variable repository {
type = string
description = "describe your variable"
default = "sak-kubeflow"
}
variable aws_region {
description = "Name the aws region (us-central-1, us-west-2 and etc.)"
default = "us-east-2"
}
# Name of EKS cluster (Not use underscore in naming. S3 backet name issue)
variable cluster_name {
description = "Name of cluster"
default = "sandbox"
}
variable availability_zones {
type = list(string)
description = "List of use avilability_zones"
default = ["us-east-2a", "us-east-2b"]
}
#Deploy environment name
variable environment {
type = string
description = "Environment Use in tags and annotations for identify EKS cluster"
default = "testing"
}
#Deploy project name
variable project {
type = string
description = "Project Use in tags and annotations for identify EKS cluster"
default = "Kubeflow"
}
variable aws_private {
type = string
description = "Use private zone or public"
default = "false"
}
variable mainzoneid {
type = string
description = "ID of main route53 zone if exist"
}
variable domains {
description = "Domains name for ingress"
type = list(string)
}
variable admin_arns {
description = "Additional IAM users to add to the aws-auth configmap."
type = list(object({
userarn = string
username = string
groups = list(string)
}))
default = []
}
variable cert_manager_email {
type = string
}
variable cognito_users {
type = list(map(string))
default = []
}
variable argo_path_prefix {
type = string
default = ""
}
variable argo_apps_dir {
type = string
default = "apps"
}