-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
49 lines (36 loc) · 876 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
variable "vars_organization" {}
variable "vars_workspace" {}
variable "instance_type" {
default = "n1-highmem-32"
}
variable "disk_size" {
default = "100"
}
variable "db_instance_type" {
default = "db-n1-standard-1"
}
variable "launch_from_snapshot" {
default = false
}
variable "data_disk_image" {
default = "projects/clover-images/global/images/family/clover-empty-xfs"
}
variable "data_disk_backup" {
default = ""
}
variable "data_disk_size_gb" {
default = 6188
}
variable "db_user" {}
variable "db_password" {}
variable "character_set" {
description = "Value for character_set_server flag (character set for server)"
default = "latin1"
}
variable "database_flags_extra" {
description = "Extra flags to be used for this database"
default = []
}
variable "phabricator_db_password" {
description = "Phabricator MySQLdb Password"
}