-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.tf
98 lines (76 loc) · 1.27 KB
/
vars.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
variable "AWS_REGION" {
default = "us-east-2"
}
variable "AMIS" {
type = map(any)
default = {
us-east-2 = "ami-024e6efaf93d85776"
}
}
variable "PRIV_KEY_PATH" {
default = "prodkey"
}
variable "PUB_KEY_PATH" {
default = "prodkey.pub"
}
variable "USERNAME" {
default = "ubuntu"
}
variable "MYIP" {
default = "76.94.42.142/32"
}
variable "rmquser" {
default = "Daniel"
}
variable "rmqpass" {
default = "Gr33n@pple123456"
type = string
sensitive = true
}
variable "dbuser" {
default = "admin"
}
variable "dbpass" {
default = "admin2023"
type = string
sensitive = true
}
variable "db_name" {
default = "accounts"
}
variable "instance_count" {
default = "1"
}
variable "VPC_NAME" {
default = "cloudstate-vpc"
}
variable "Zone1" {
default = "us-east-2a"
}
variable "Zone2" {
default = "us-east-2b"
}
variable "Zone3" {
default = "us-east-2c"
}
variable "VpcCIDR" {
default = "172.21.0.0/16"
}
variable "PubSub1CIDR" {
default = "172.21.1.0/24"
}
variable "PubSub2CIDR" {
default = "172.21.2.0/24"
}
variable "PubSub3CIDR" {
default = "172.21.3.0/24"
}
variable "PrivSub1CIDR" {
default = "172.21.4.0/24"
}
variable "PrivSub2CIDR" {
default = "172.21.5.0/24"
}
variable "PrivSub3CIDR" {
default = "172.21.6.0/24"
}