-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvariables.tf
65 lines (55 loc) · 1.45 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
variable "aws_private" {
type = bool
description = "Set true or false to use private or public infrastructure"
default = false
}
variable "argocd" {
type = map(string)
description = "A set of values for enabling deployment through ArgoCD"
default = {}
}
variable "conf" {
type = map(string)
description = "A custom configuration for deployment"
default = {}
}
variable "hostedzones" {
type = list(string)
description = "A list of Route53 hosted zones domains to create, need to provide a list of FQDN strings"
default = []
}
variable "mainzoneid" {
type = string
default = ""
description = "An ID of the root Route53 zone for creating sub-domains"
}
variable "namespace" {
type = string
default = "kube-system"
description = "A name of the existing namespace"
}
variable "module_depends_on" {
default = []
type = list(any)
description = "A list of explicit dependencies"
}
variable "cluster_name" {
type = string
default = null
description = "A name of the Amazon EKS cluster"
}
variable "chart_version" {
type = string
description = "A Helm Chart version"
default = "6.5.6"
}
variable "tags" {
type = map(string)
default = {}
description = "A tags for attaching to new created AWS resources"
}
variable "vpc_id" {
type = string
default = null
description = "An ID of the existing AWS VPC"
}