-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariables.tf
More file actions
68 lines (57 loc) · 1.56 KB
/
variables.tf
File metadata and controls
68 lines (57 loc) · 1.56 KB
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
variable "region" {
type = string
description = "AWS region to deploy resources in"
default = "eu-central-1"
}
variable "enable_budget" {
type = bool
description = "Enable budget notifications"
default = true
}
variable "email_address" {
type = string
description = "Please enter your valid email address\nEmail address will be used to receive budget notifications"
}
variable "availability_zones" {
type = list(string)
description = "List of availability zones to use for the VPC"
}
variable "public_subnets" {
type = list(string)
description = "List of public subnets to create in the VPC"
}
variable "eks_cluster_name" {
type = string
description = "Name of the EKS cluster"
default = "cndro-eks"
}
variable "eks_cluster_version" {
type = string
description = "Version of the EKS cluster"
default = "1.31"
}
variable "enable_eks_cluster_autoscaler" {
type = bool
description = "Create EKS Cluster Autoscaler role and policy"
default = true
}
variable "enable_karpenter" {
type = bool
description = "Create Karpenter role and policy"
default = false
}
variable "karpenter_namespace" {
type = string
description = "Karpenter namespace"
default = "karpenter"
}
variable "karpenter_service_account" {
type = string
description = "Karpenter service account"
default = "karpenter"
}
variable "karpenter_use_spot_instances" {
type = bool
description = "Use spot instances in Karpenter"
default = false
}