-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
65 lines (52 loc) · 904 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
variable "private_sdn_network" {
type = string
default = ""
}
variable "zone" {
type = string
}
variable "dbaas_plan" {
type = string
}
variable "pgpool_proxy_plan" {
type = string
}
variable "ssh_key_public" {
type = string
}
variable "proxy_sdn_ip" {
type = string
default = ""
}
variable "dbaas_pgsql_port" {
type = string
default = ""
}
variable "dbaas_pgsql_database" {
type = string
default = ""
}
variable "dbaas_pgsql_username" {
type = string
default = ""
}
variable "dbaas_pgsql_password" {
type = string
default = ""
}
variable "dbaas_pgsql_monitor_username" {
type = string
default = ""
}
variable "dbaas_pgsql_monitor_password" {
type = string
default = ""
}
variable "dbaas_pgsql_default_username" {
type = string
default = ""
}
variable "dbaas_pgsql_default_password" {
type = string
default = ""
}