-
Notifications
You must be signed in to change notification settings - Fork 0
/
rds_variables.tf
49 lines (40 loc) · 1.13 KB
/
rds_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
variable "order_svc_db_username" {
description = "Order Service RDS Database instance master username"
type = string
}
variable "order_svc_db_password" {
description = "Order Service RDS Database instance master password"
type = string
sensitive = true
}
variable "order_svc_db_name" {
description = "Order Service RDS Database instance name"
type = string
default = "order_db"
}
variable "order_svc_db_port" {
description = "Order Service RDS Database instance port"
type = number
default = 5432
}
// ---
variable "payment_svc_db_username" {
description = "Payment Service RDS Database instance master username"
type = string
}
variable "payment_svc_db_password" {
description = "Payment Service RDS Database instance master password"
type = string
sensitive = true
}
variable "payment_svc_db_name" {
description = "Payment Service RDS Database instance name"
type = string
default = "payment_db"
}
variable "payment_svc_db_port" {
description = "Payment Service RDS Database instance port"
type = number
default = 5432
}
// ---