Skip to content

Commit dec08ed

Browse files
committed
fix current state
1 parent 28ce8f4 commit dec08ed

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

terraform/tfstate.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"version": 4,
33
"terraform_version": "1.9.3",
4-
"serial": 88,
4+
"serial": 93,
55
"lineage": "425397de-8394-a003-8a6c-bce854d9cc53",
66
"outputs": {},
77
"resources": [
@@ -242,7 +242,7 @@
242242
"allow_merge_commit": false,
243243
"allow_rebase_merge": false,
244244
"allow_squash_merge": true,
245-
"allow_update_branch": false,
245+
"allow_update_branch": true,
246246
"archive_on_destroy": true,
247247
"archived": false,
248248
"auto_init": false,
@@ -309,14 +309,14 @@
309309
"allow_merge_commit": false,
310310
"allow_rebase_merge": false,
311311
"allow_squash_merge": true,
312-
"allow_update_branch": false,
312+
"allow_update_branch": true,
313313
"archive_on_destroy": true,
314314
"archived": false,
315315
"auto_init": false,
316316
"default_branch": "main",
317317
"delete_branch_on_merge": true,
318318
"description": "The controls for managing Django Commons projects",
319-
"etag": "W/\"65ff4d3689a0ef454874af56f71ee3be29a52b0cdae6962d295593e4a6ec8fa0\"",
319+
"etag": "W/\"b18603626f19f95967688effb022c8a4e89787ba38d62bcc65cb5d2d195bf251\"",
320320
"full_name": "django-commons/controls",
321321
"git_clone_url": "git://github.com/django-commons/controls.git",
322322
"gitignore_template": null,
@@ -376,7 +376,7 @@
376376
"allow_merge_commit": false,
377377
"allow_rebase_merge": false,
378378
"allow_squash_merge": true,
379-
"allow_update_branch": false,
379+
"allow_update_branch": true,
380380
"archive_on_destroy": true,
381381
"archived": false,
382382
"auto_init": false,
@@ -443,7 +443,7 @@
443443
"allow_merge_commit": false,
444444
"allow_rebase_merge": false,
445445
"allow_squash_merge": true,
446-
"allow_update_branch": false,
446+
"allow_update_branch": true,
447447
"archive_on_destroy": true,
448448
"archived": false,
449449
"auto_init": false,

terraform/variables.tf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ variable "repositories" {
2626
allow_merge_commit = optional(bool, false)
2727
allow_rebase_merge = optional(bool, false)
2828
allow_squash_merge = optional(bool, true)
29-
allow_update_branch = optional(bool, false)
29+
allow_update_branch = optional(bool, true)
3030
enable_branch_protection = optional(bool, true)
3131
has_discussions = optional(bool, true)
3232
has_downloads = optional(bool, true)
@@ -39,7 +39,8 @@ variable "repositories" {
3939
visibility = optional(string, "public")
4040
skip_team_creation = optional(bool, false) # Do not create teams for repository
4141
admins = optional(set(string), []) # Members of the repository's admin and repository teams. Have admin permissions
42-
committers = optional(set(string), []) # Members of the repository's committers and repository teams. Have write permissions
42+
committers = optional(set(string), [])
43+
# Members of the repository's committers and repository teams. Have write permissions
4344
members = optional(set(string), []) # Members of the repository team. Have triage permissions
4445
}))
4546
}

0 commit comments

Comments
 (0)