aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-10-02 15:31:04 -0700
committerFranck Cuny <franck@fcuny.net>2022-10-02 15:31:04 -0700
commit280278e7462ee3d8db47e27da84e1de792e3d855 (patch)
tree75950bf67682eabd1b33fdcdbcd9a5a7dd1b6032
parentops(github): terraform configuration to manage GitHub (diff)
downloadinfra-280278e7462ee3d8db47e27da84e1de792e3d855.tar.gz
feat(ops/github): new repository: gh-ssh-keys
Diffstat (limited to '')
-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 5e45e3f..15ee09a 100644
--- a/ops/github/repositories_private.tf
+++ b/ops/github/repositories_private.tf
@@ -216,3 +216,17 @@ resource "github_repository" "world" {
allow_rebase_merge = true
vulnerability_alerts = true
}
+
+resource "github_repository" "gh-ssh-keys" {
+ name = "gh-ssh-keys"
+ 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
+}