-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
52 lines (43 loc) · 1.19 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
################################################################################
# Variables Declarations
################################################################################
variable "environment" {
description = "Environment name, e.g. dev, test prod."
type = string
}
variable "owner" {
description = "Organization that owns this resource."
type = string
}
variable "aws_region" {
description = "AWS Region"
type = string
}
variable "aws_azs" {
description = "Availability Zones (pick 2 in the region specified by aws_region)."
type = list(string)
}
variable "db_instance_class" {
description = "Instance class for the app database."
type = string
}
variable "db_size" {
description = "Size, in GB, of database volume."
type = number
}
variable "db_username" {
description = "Administrator username."
type = string
}
variable "db_password" {
description = "Default database password."
type = string
}
variable "eks_cluster_max_nodes" {
description = "Max number of eks nodes."
type = number
}
variable "eks_cluster_min_nodes" {
description = "Minimum number of eks nodes."
type = number
}