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: variables.tf
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -66,55 +66,55 @@ variable "visibility" {
66
66
variable"has_issues" {
67
67
description="(Optional) Set to true to enable the GitHub Issues features on the repository. (Default: false)"
68
68
type=bool
69
-
default=false
69
+
default=null
70
70
}
71
71
72
72
variable"has_projects" {
73
73
description="(Optional) 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)"
74
74
type=bool
75
-
default=false
75
+
default=null
76
76
}
77
77
78
78
variable"has_wiki" {
79
79
description="(Optional) Set to true to enable the GitHub Wiki features on the repository. (Default: false)"
80
80
type=bool
81
-
default=false
81
+
default=null
82
82
}
83
83
84
84
variable"allow_merge_commit" {
85
85
description="(Optional) Set to false to disable merge commits on the repository. (Default: true)"
86
86
type=bool
87
-
default=true
87
+
default=null
88
88
}
89
89
90
90
variable"allow_squash_merge" {
91
91
description="(Optional) Set to true to enable squash merges on the repository. (Default: false)"
92
92
type=bool
93
-
default=false
93
+
default=null
94
94
}
95
95
96
96
variable"allow_rebase_merge" {
97
97
description="(Optional) Set to true to enable rebase merges on the repository. (Default: false)"
98
98
type=bool
99
-
default=false
99
+
default=null
100
100
}
101
101
102
102
variable"delete_branch_on_merge" {
103
103
description="(Optional) Whether or not to delete the merged branch after merging a pull request. (Default: false)"
104
104
type=bool
105
-
default=false
105
+
default=null
106
106
}
107
107
108
108
variable"has_downloads" {
109
109
description="(Optional) Set to true to enable the (deprecated) downloads features on the repository. (Default: false)"
110
110
type=bool
111
-
default=false
111
+
default=null
112
112
}
113
113
114
114
variable"auto_init" {
115
115
description="(Optional) Wether or not to produce an initial commit in the repository. (Default: true)"
0 commit comments