-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
61 lines (46 loc) · 885 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
variable "name" {}
variable "description" {
default = "TwinDB Project"
}
variable "default_branch" {
default = "master"
}
variable "private" {
default = true
}
variable "has_branch_protection" {
default = true
}
variable "has_issues" {
default = true
}
variable "has_downloads" {
default = false
}
variable "has_documentation" {
default = false
}
variable "has_docker_hub" {
default = false
}
variable "has_travis" {
default = false
}
variable "homepage_url" {
default = "https://twindb.com"
}
variable "allow_rebase_merge" {
default = true
}
variable "allow_squash_merge" {
default = true
}
variable "rtd_url" {
default = "https://readthedocs.org/"
}
variable "slack_url" {
default = "https://hooks.slack.com/services/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"
}
variable "docker_hub_url" {
default = ""
}