-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
46 lines (44 loc) · 1.11 KB
/
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
variable "name" {
description = "GitHub project name"
}
variable "description" {
description = "GitHub project description"
}
variable "homepage_url" {
default = ""
description = "GitHub project homepage"
}
variable "licence" {
description = "The project licence (e.g., MIT)"
}
variable "main_branch" {
default = "main"
description = "Main branch of the repository"
}
variable "topics" {
default = []
type = list(string)
description = "Topics to label the project with"
}
variable "ci_contexts" {
default = []
type = list(string)
description = "Required CI contexts for PRs to merged in the main branch"
}
variable "support_releases" {
default = true
description = "Whether the project uses Semantic Releases"
}
variable "support_issues" {
default = true
description = "Whether the project should allow issues"
}
variable "support_discussions" {
default = false
description = "Whether the project should allow discussions"
}
variable "pages_enabled" {
default = true
type = bool
description = "Whether the project should use GitHub Pages"
}