You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/private-repository-with-team/variables.tf
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -35,49 +35,49 @@ variable "homepage_url" {
35
35
}
36
36
37
37
variable"has_issues" {
38
-
description="Set to true to enable the GitHub Issues features on the repository. (Default: false)"
38
+
description="Set to true to enable the GitHub Issues features on the repository."
39
39
type=bool
40
40
default=true
41
41
}
42
42
43
43
variable"has_projects" {
44
-
description="Set to true to enable the GitHub Projects features on the repository. Per the github documentation when in an organization that has disabled repository projects it will default to false and will otherwise default to true. If you specify true when it has been disabled it will return an error. (Default: false)"
44
+
description="Set to true to enable the GitHub Projects features on the repository."
45
45
type=bool
46
46
default=true
47
47
}
48
48
49
49
variable"has_wiki" {
50
-
description="Set to true to enable the GitHub Wiki features on the repository. (Default: false)"
50
+
description="Set to true to enable the GitHub Wiki features on the repository."
51
51
type=bool
52
52
default=true
53
53
}
54
54
55
55
variable"allow_merge_commit" {
56
-
description="Set to false to disable merge commits on the repository. (Default: true)"
56
+
description="Set to false to disable merge commits on the repository."
57
57
type=bool
58
58
default=true
59
59
}
60
60
61
61
variable"allow_squash_merge" {
62
-
description="Set to true to enable squash merges on the repository. (Default: false)"
62
+
description="Set to true to enable squash merges on the repository."
63
63
type=bool
64
64
default=true
65
65
}
66
66
67
67
variable"allow_rebase_merge" {
68
-
description="Set to true to enable rebase merges on the repository. (Default: false)"
68
+
description="Set to true to enable rebase merges on the repository."
69
69
type=bool
70
70
default=true
71
71
}
72
72
73
73
variable"has_downloads" {
74
-
description="Set to true to enable the (deprecated) downloads features on the repository. (Default: false)"
74
+
description="Set to true to enable the (deprecated) downloads features on the repository."
75
75
type=bool
76
76
default=false
77
77
}
78
78
79
79
variable"auto_init" {
80
-
description="Wether or not to produce an initial commit in the repository. (Default: true)"
80
+
description="Wether or not to produce an initial commit in the repository."
0 commit comments