From ea515da24d4b1b657df8e3529e244d976a5f57f4 Mon Sep 17 00:00:00 2001 From: Moti Asayag Date: Sun, 16 Aug 2026 09:02:12 +0300 Subject: [PATCH] chore: delete osac-metering repository Work consolidated into the osac mono-repo; osac-metering never received any commits, so it is dead weight. Remove the Terraform module (and the now-orphaned moved block) so the next apply deletes the repository. The common_repository module does not set archive_on_destroy, so removing the module permanently deletes the repo rather than archiving it. This is intentional given the repo is empty. Co-Authored-By: Claude Opus 4.8 Signed-off-by: Moti Asayag --- repositories.tf | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/repositories.tf b/repositories.tf index a5562aa..910121a 100644 --- a/repositories.tf +++ b/repositories.tf @@ -476,32 +476,3 @@ module "repo_osac_csi_driver" { push_allowances = ["/openshift-merge-robot", "osac-project/wg-infra", "osac-project/org-admins"] environments = [{ name = "e2e-test" }] } - -module "repo_osac_metering" { - source = "./modules/common_repository" - visibility = "public" - name = "osac-metering" - description = "OSAC metering service, installation chart and provider adapters" - teams = [ - { - team_id = "fulfillment-wg" - permission = "push" - }, - { - team_id = "observability-wg" - permission = "push" - }, - { - team_id = "wg-infra" - permission = "admin" - } - ] - required_approvals = null - push_allowances = ["/openshift-merge-robot", "osac-project/wg-infra", "osac-project/org-admins"] - environments = [{ name = "e2e-test" }] -} - -moved { - from = module.repo_osac_metering_service - to = module.repo_osac_metering -}