about summary refs log tree commit diff
path: root/ops/github
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-10-04 19:21:13 -0700
committerFranck Cuny <franck@fcuny.net>2022-10-04 19:21:13 -0700
commit71c80500f7542a6366ac9b92bedc3f44f3eb5805 (patch)
tree8991979de8b69fb82d6726c70e290b81acab685e /ops/github
parentref(tools/ipconverter): rewrite the tool in python (diff)
downloadworld-71c80500f7542a6366ac9b92bedc3f44f3eb5805.tar.gz
feat(ops/github): add repository for fcuny.net
Diffstat (limited to 'ops/github')
-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 15ee09a..bb33baf 100644
--- a/ops/github/repositories_private.tf
+++ b/ops/github/repositories_private.tf
@@ -230,3 +230,17 @@ resource "github_repository" "gh-ssh-keys" {
   allow_rebase_merge     = true
   vulnerability_alerts   = true
 }
+
+resource "github_repository" "fcuny-net" {
+  name                   = "fcuny.net"
+  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
+}