-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
121 lines (97 loc) · 2.36 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
variable "region" {
type = string
description = "AWS Region"
}
variable "vpc_name" {
description = "Name of VPC"
}
variable "vpc_cidr" {
description = "CIDR Block of the VPC"
}
variable "cidr_block_igw" {
description = "CIDR Block for Internet and NAT Gateways"
}
variable "eks_cluster_name" {
description = "Name of the EKS Cluster"
}
variable "node_group_name" {
type = string
description = "Name of the EKS Node Group"
}
variable "ng_instance_types" {
type = list(string)
description = "List of instance types associated with the EKS Node Group"
}
variable "disk_size" {
description = "Disk Size for Worker Nodes in GiB"
}
variable "desired_nodes" {
description = "Desired number of worker nodes"
}
variable "max_nodes" {
description = "Maximum number of worker nodes"
}
variable "min_nodes" {
description = "Minimum number of worker nodes"
}
variable "fargate_profile_name" {
type = string
description = "Name of the Fargate Profile"
}
variable "kubernetes_namespace" {
type = string
description = "Kubernetes namespace for selection"
}
variable "deployment_name" {
type = string
description = "Name of the Deployment"
}
variable "deployment_replicas" {
type = string
description = "Number of replicas for the Deployment"
}
variable "app_labels" {
type = map
description = "List of the labels for Deployment"
}
variable "rds_subnet_group_name" {
type = string
description = "RDS Subnet Group Name"
}
variable "rds_db_identifier" {
type = string
description = "RDS Identifier must be unique and always start with small letter"
}
variable "rds_storage" {
type = string
description = "Storage Size for RDS Database"
}
variable "engine" {
type = string
description = "RDS Database Engine Name"
}
variable "engine_version" {
type = string
description = "RDS Database Engine Version"
}
variable "instance_class" {
type = string
description = "RDS Database Instance type/class"
}
variable "rds_parameter_group_name" {
type = string
description = "RDS Database Parameter Group Name"
}
variable "rds_db_name" {
type = string
description = "RDS Database Name"
}
/*
variable "rds_user" {
type = string
description = "RDS Database Username"
}
variable "rds_pass" {
type = string
description = "RDS Database Password"
}*/