aboutsummaryrefslogtreecommitdiff
path: root/ops/github
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
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')
-rw-r--r--ops/github/repositories_private.tf14
-rw-r--r--ops/github/repositories_public.tf14
2 files changed, 28 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
+}
diff --git a/ops/github/repositories_public.tf b/ops/github/repositories_public.tf
index 8f70342..19ecb7f 100644
--- a/ops/github/repositories_public.tf
+++ b/ops/github/repositories_public.tf
@@ -69,3 +69,17 @@ resource "github_repository" "anyevent-riak" {
allow_rebase_merge = true
vulnerability_alerts = true
}
+
+resource "github_repository" "containerd-to-vm" {
+ name = "containerd-to-vm"
+ delete_branch_on_merge = true
+ archived = false
+ 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
+}