-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
64 lines (52 loc) · 907 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
variable "rds_master_password" {
type = string
default = ""
}
variable "docdb_master_password" {
type = string
default = ""
}
variable "cloudflare_api_token" {
type = string
default = ""
}
variable "xquare_cloudflare_zone_id" {
type = string
default = ""
}
variable "pick_cloudflare_zone_id" {
type = string
default = ""
}
variable "repo_cloudflare_zone_id" {
type = string
default = ""
}
variable "xquare_server_domain" {
type = string
default = ""
}
variable "xquare_design_domain" {
type = string
default = ""
}
variable "xquare_mysql_domain" {
type = string
default = ""
}
variable "xquare_redis_domain" {
type = string
default = ""
}
variable "repo_on_premise_ip" {
type = string
default = ""
}
variable "slack_hook_url" {
type = string
default = ""
}
variable "slack_channel" {
type = string
default = ""
}