about summary refs log tree commit diff
path: root/ops
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-10-08 10:17:36 -0700
committerFranck Cuny <franck@fcuny.net>2022-10-08 10:17:36 -0700
commit7b61e9a71ccfc8102ea333906436e3a3458f3b0c (patch)
tree0cd745c1f21c32a33fc2ddb94bcc99998030232e /ops
parentref(tools/govanity): moved back to its own repository (diff)
downloadworld-7b61e9a71ccfc8102ea333906436e3a3458f3b0c.tar.gz
feat(ops/github): add the repository twitter-backup
Diffstat (limited to 'ops')
-rw-r--r--ops/github/repositories_private.tf14
1 files changed, 14 insertions, 0 deletions
diff --git a/ops/github/repositories_private.tf b/ops/github/repositories_private.tf
index 1dbc3a4..e78bf32 100644
--- a/ops/github/repositories_private.tf
+++ b/ops/github/repositories_private.tf
@@ -272,3 +272,17 @@ resource "github_repository" "govanity" {
   allow_rebase_merge     = true
   vulnerability_alerts   = true
 }
+
+resource "github_repository" "twitter-backup" {
+  name                   = "twitter-backup"
+  visibility             = "private"
+  delete_branch_on_merge = true
+  has_downloads          = false
+  has_issues             = true
+  has_projects           = false
+  has_wiki               = false
+  allow_merge_commit     = false
+  allow_squash_merge     = true
+  allow_rebase_merge     = true
+  vulnerability_alerts   = true
+}