-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
46 lines (39 loc) · 1001 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
variable "name" {
description = "The name of the GitHub repository"
type = string
}
variable "allow_merge_commit" {
description = "Set to true to allow merge commits"
type = bool
default = true
}
variable "allow_auto_merge" {
description = "Set to true to allow auto merging"
type = bool
default = false
}
variable "allow_squash_merge" {
description = "Set to true to allow squash merging"
type = bool
default = true
}
variable "allow_rebase_merge" {
description = "Set to true to allow rebase merging"
type = bool
default = true
}
variable "archived" {
description = "Set to true to archive the repository"
type = bool
default = false
}
variable "description" {
description = "A description of the repository"
type = string
default = ""
}
variable "delete_branch_on_merge" {
description = "Set to true to delete the branch on merge"
type = bool
default = false
}