diff options
author | Franck Cuny <franck@fcuny.net> | 2022-10-08 10:17:36 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-10-08 10:17:36 -0700 |
commit | 7b61e9a71ccfc8102ea333906436e3a3458f3b0c (patch) | |
tree | 0cd745c1f21c32a33fc2ddb94bcc99998030232e | |
parent | ref(tools/govanity): moved back to its own repository (diff) | |
download | world-7b61e9a71ccfc8102ea333906436e3a3458f3b0c.tar.gz |
feat(ops/github): add the repository twitter-backup
Diffstat (limited to '')
-rw-r--r-- | ops/github/repositories_private.tf | 14 |
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 +} |