-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
69 lines (62 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
/**
* Copyright (c) 2017-present SIGHUP s.r.l All rights reserved.
* Use of this source code is governed by a BSD-style
* license that can be found in the LICENSE file.
*/
variable "cluster_name" {
type = string
description = "Name of cluster where addons will be installed"
}
variable "ebs_csi_driver" {
description = "Enable and configure EBS CSI Driver"
type = object({
enabled = optional(bool, true)
resolve_conflicts = optional(string, "OVERWRITE")
service_account_role_arn = optional(string)
configuration_values = optional(any)
})
default = {}
}
variable "snapshot_controller" {
description = "Enable and configure Snapshot Controller"
type = object({
enabled = optional(bool, true)
resolve_conflicts = optional(string, "OVERWRITE")
service_account_role_arn = optional(string)
configuration_values = optional(any)
})
default = {}
}
variable "coredns" {
description = "Enable and configure Coredns"
type = object({
enabled = optional(bool, true)
resolve_conflicts = optional(string, "OVERWRITE")
configuration_values = optional(any)
})
default = {}
}
variable "kube_proxy" {
description = "Enable and configure kube-proxy"
type = object({
enabled = optional(bool, true)
resolve_conflicts = optional(string, "OVERWRITE")
configuration_values = optional(any)
})
default = {}
}
variable "vpc_cni" {
description = "Enable and configure VPC CNI"
type = object({
enabled = optional(bool, true)
resolve_conflicts = optional(string, "OVERWRITE")
service_account_role_arn = optional(string)
configuration_values = optional(any)
})
default = {}
}
variable "tags" {
type = map(string)
description = "The tags to apply to all resources"
default = {}
}