Skip to content

Commit 723f161

Browse files
committed
wip
1 parent 05cf4b4 commit 723f161

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

terraform/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ All changes should be made in `production/*.tfvars`:
5151
topics = []
5252
visibility = "public" # optional, default is "public"
5353
is_django_commons_repo = optional(bool, false) # Do not create teams for repository
54-
enable_branch_protection = true # optional, default is true
5554
required_status_checks_contexts = [] # optional, default is []
5655
admins = [] # Members of the repository's admin and repository teams. Have admin permissions
5756
committers = [] # Members of the repository's committers and repository teams. Have write permissions

terraform/production/repositories.tfvars

-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ repositories = {
33

44
".github" = {
55
description = "A Special Repository."
6-
enable_branch_protection = false
76

87
topics = []
98
push_allowances = []
@@ -12,7 +11,6 @@ repositories = {
1211

1312
"controls" = {
1413
description = "The controls for managing Django Commons projects"
15-
enable_branch_protection = false
1614
allow_merge_commit = true
1715
allow_rebase_merge = true
1816
allow_squash_merge = true
@@ -160,7 +158,6 @@ repositories = {
160158
"tailwindcss",
161159
]
162160
visibility = "public"
163-
enable_branch_protection = true
164161
required_status_checks_contexts = []
165162
admins = [
166163
"oliverandrich",

terraform/variables.tf

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ variable "repositories" {
3333
homepage_url = optional(string, "")
3434
has_wiki = optional(bool, false)
3535
push_allowances = optional(list(string), [])
36-
enable_branch_protection = optional(bool, true)
3736
required_status_checks_contexts = optional(list(string), [])
3837
is_template = optional(bool, false) # Is the repository a template repository
3938
topics = optional(list(string))

0 commit comments

Comments
 (0)