diff options
Diffstat (limited to '')
-rw-r--r-- | ops/github/repositories_private.tf | 14 | ||||
-rw-r--r-- | ops/github/repositories_public.tf | 14 |
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 +} |