forked from jalantechnologies/platform-aws-tf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
44 lines (36 loc) · 1.1 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
variable "aws_region" {
description = "The AWS region to deploy the EKS cluster in."
default = "us-east-1"
}
variable "aws_profile" {
description = "Profile to use for obtaining AWS credentials"
default = "jalantechnologies"
}
variable "eks_cluster_name" {
description = "The name of the EKS cluster."
default = "platform-k8-cluster"
}
variable "eks_instance_type" {
description = "Instance to use with EKS cluster nodes."
default = "t3.medium"
}
variable "eks_desired_capacity" {
description = "The desired number of worker nodes for EKS cluster."
default = 2
}
variable "eks_max_capacity" {
description = "The maximum number of worker nodes for EKS cluster."
default = 3
}
variable "eks_min_capacity" {
description = "The minimum number of worker nodes for EKS cluster."
default = 1
}
variable "ecr_repository_name" {
description = "The name of the ECR repository."
default = "platform"
}
variable "cert_issuer_email" {
description = "Email to use with cert manager for issuing SSL certificates"
default = "[email protected]"
}