aboutsummaryrefslogtreecommitdiff
path: root/ops/github/repositories_private.tf
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-10-04 19:41:37 -0700
committerFranck Cuny <franck@fcuny.net>2022-10-04 19:41:37 -0700
commita7d30f76d381d5661631ff02209a8bfa92f77a4a (patch)
treecd5873ffc531d2f4f7a3f4b0f4e303108d94f687 /ops/github/repositories_private.tf
parentfeat(ops/github): add repository for fcuny.net (diff)
downloadinfra-a7d30f76d381d5661631ff02209a8bfa92f77a4a.tar.gz
feat(ops/github): add notes.fcuny.net and containerd-to-vm
Diffstat (limited to 'ops/github/repositories_private.tf')
-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 bb33baf..721eff1 100644
--- a/ops/github/repositories_private.tf
+++ b/ops/github/repositories_private.tf
@@ -244,3 +244,17 @@ resource "github_repository" "fcuny-net" {
allow_rebase_merge = true
vulnerability_alerts = true
}
+
+resource "github_repository" "notes-fcuny-net" {
+ name = "notes.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
+}