-
Notifications
You must be signed in to change notification settings - Fork 10
/
variables.tf
80 lines (73 loc) · 964 Bytes
/
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
#
##
### GENERAL
##
#
variable "stage" {
default = "dev"
type = string
}
variable "stage-domain" {
default = {
dev = "kubewp.tk"
prod = "kubewp.com"
}
type = object({
dev = string
prod = string
})
}
variable "aws-region" {
default = "us-east-1"
type = string
}
#
##
### EC2, EKS & K8s
##
#
variable "eks-cluster-name" {
default = "kube-wp"
type = string
}
variable "wn-disk-size" {
default = 30
type = number
}
variable "wn-instance-types" {
default = {
dev = ["t3a.medium"]
prod = ["m5a.2xlarge"]
}
type = object({
dev = list(string)
prod = list(string)
})
}
#
##
### SECURITY GROUPS & ACLS
##
#
variable "team-ips" {
default = [
"1.1.1.1/32",
"8.8.8.8/32"
]
type = list(string)
}
#
##
### RDS
##
#
variable "rds-instance-type" {
default = {
dev = "db.t3.small"
prod = "db.m6g.2xlarge"
}
type = object({
dev = string
prod = string
})
}