-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase_variables.tf
53 lines (44 loc) · 1.26 KB
/
database_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
variable "auth_svc_db_username" {
description = "Auth Service RDS Database instance master username"
type = string
default = "auth"
}
variable "auth_svc_db_password" {
description = "Auth Service RDS Database instance master password"
type = string
sensitive = true
default = "Secluding9.Twerp.Flagstick"
}
variable "auth_svc_db_name" {
description = "Auth Service RDS Database instance name"
type = string
default = "auth_db"
}
variable "auth_svc_db_port" {
description = "Auth Service RDS Database instance port"
type = number
default = 5432
}
// ---
variable "clockin_svc_db_username" {
description = "ClockIn Service RDS Database instance master username"
type = string
default = "clockin"
}
variable "clockin_svc_db_password" {
description = "ClockIn Service RDS Database instance master password"
type = string
sensitive = true
default = "Secluding9.Twerp.Flagstick"
}
variable "clockin_svc_db_name" {
description = "ClockIn Service RDS Database instance name"
type = string
default = "clockin_db"
}
variable "clockin_svc_db_port" {
description = "ClockIn Service RDS Database instance port"
type = number
default = 5432
}
// ---