-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
99 lines (79 loc) · 2.52 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
########
# Gloabl
########
variable "repo_name" {
description = "The name of the repository"
}
######
# Repo
######
variable "repo_description" {
description = "A description of the repository"
}
variable "repo_homepage_url" {
description = "URL of a page describing the project."
default = ""
}
variable "repo_private" {
description = "Set to true to create a private repository"
default = false
}
variable "repo_has_issues" {
description = "Set to true to enable the GitHub Issues features on the repository"
default = true
}
variable "repo_has_projects" {
description = "Set to true to enable the GitHub Projects features on the repository"
default = false
}
variable "repo_has_wiki" {
description = "Set to true to enable the GitHub Wiki features on the repository"
default = true
}
variable "repo_allow_merge_commit" {
description = "Set to false to disable merge commits on the repository"
default = true
}
variable "repo_allow_squash_merge" {
description = "Set to false to disable squash merges on the repository"
default = true
}
variable "repo_allow_rebase_merge" {
description = "Set to false to disable rebase merges on the repository"
default = true
}
variable "repo_has_downloads" {
description = "Set to true to enable the (deprecated) downloads features on the repository"
default = false
}
variable "repo_auto_init" {
description = " Meaningful only during create; set to true to produce an initial commit in the repository"
default = true
}
variable "repo_gitignore_template" {
description = "Meaningful only during create, will be ignored after repository creation. Use the name of the template without the extension - https://github.com/github/gitignore"
default = ""
}
variable "repo_license_template" {
description = "Meaningful only during create, will be ignored after repository creation. Use the name of the template without the extension - https://github.com/github/choosealicense.com/tree/gh-pages/_licenses"
default = ""
}
variable "repo_archived" {
description = "Specifies if the repository should be archived"
default = false
}
#######
# Teams
#######
variable "admin_team" {
description = "Enable creation of an admin team for the repoistory"
default = false
}
variable "write_team" {
description = "Enable creation of an write (push) team for the repoistory"
default = false
}
variable "read_team" {
description = "Enable creation of an read (pull) team for the repoistory"
default = false
}