From cde749f5dae7df34eec2e762a45e32866128345c Mon Sep 17 00:00:00 2001 From: Josh Luedeman Date: Mon, 11 May 2026 18:41:33 -0400 Subject: [PATCH] fix: correct module source slugs from tf-az-overlays-* to terraform-az-overlays-* GitHub renamed these repos in a prior pass but module sources and catalog-info.yaml still referenced the truncated slug. Terraform downloads only succeed today via GitHub's 301 redirect, which is fragile. This commit replaces every reference with the canonical repo name. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- catalog-info.yaml | 6 +++--- examples/Commerical/complete/dependencies.tf | 4 ++-- examples/Commerical/complete/main.tf | 2 +- examples/Commerical/default/main.tf | 2 +- .../default_w_vnet_integration_private_ip/main.tf | 2 +- .../Commerical/default_w_vnet_integration_public_ip/main.tf | 2 +- modules.aci.scaffolding.tf | 4 ++-- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/catalog-info.yaml b/catalog-info.yaml index 956acf4..9ba34a7 100644 --- a/catalog-info.yaml +++ b/catalog-info.yaml @@ -1,10 +1,10 @@ apiVersion: backstage.io/v1alpha1 kind: Component metadata: - name: tf-az-overlays-containerinstance + name: terraform-az-overlays-containerinstance description: Terraform overlay module for Azure Container Instances annotations: - github.com/project-slug: POps-Rox/tf-az-overlays-containerinstance + github.com/project-slug: POps-Rox/terraform-az-overlays-containerinstance backstage.io/techdocs-ref: dir:. tags: - terraform @@ -12,7 +12,7 @@ metadata: - azure - platform-ops links: - - url: https://github.com/POps-Rox/tf-az-overlays-containerinstance + - url: https://github.com/POps-Rox/terraform-az-overlays-containerinstance title: GitHub Repository icon: github spec: diff --git a/examples/Commerical/complete/dependencies.tf b/examples/Commerical/complete/dependencies.tf index 0d8a7f2..c0751ad 100644 --- a/examples/Commerical/complete/dependencies.tf +++ b/examples/Commerical/complete/dependencies.tf @@ -24,7 +24,7 @@ resource "azurerm_log_analytics_workspace" "aci-log" { } module "aci-storage-account" { - source = "github.com/POps-Rox/tf-az-overlays-storageaccount" + source = "github.com/POps-Rox/terraform-az-overlays-storageaccount" depends_on = [azurerm_resource_group.aci-network-rg] @@ -58,7 +58,7 @@ resource "azurerm_storage_share" "aci-storage-share" { } module "aci-acr" { - source = "github.com/POps-Rox/tf-az-overlays-containerregistry" + source = "github.com/POps-Rox/terraform-az-overlays-containerregistry" depends_on = [azurerm_resource_group.aci-network-rg] diff --git a/examples/Commerical/complete/main.tf b/examples/Commerical/complete/main.tf index 172b02e..084ebe6 100644 --- a/examples/Commerical/complete/main.tf +++ b/examples/Commerical/complete/main.tf @@ -2,7 +2,7 @@ # Licensed under the MIT License. module "mod_aci" { - #source = "github.com/POps-Rox/tf-az-overlays-containerinstance" + #source = "github.com/POps-Rox/terraform-az-overlays-containerinstance" #version = "x.x.x" source = "../../.." diff --git a/examples/Commerical/default/main.tf b/examples/Commerical/default/main.tf index b15f901..efeea28 100644 --- a/examples/Commerical/default/main.tf +++ b/examples/Commerical/default/main.tf @@ -2,7 +2,7 @@ # Licensed under the MIT License. module "mod_aci" { - #source = "github.com/POps-Rox/tf-az-overlays-containerinstance" + #source = "github.com/POps-Rox/terraform-az-overlays-containerinstance" #version = "x.x.x" source = "../../.." diff --git a/examples/Commerical/default_w_vnet_integration_private_ip/main.tf b/examples/Commerical/default_w_vnet_integration_private_ip/main.tf index cea8c3b..d44a1e1 100644 --- a/examples/Commerical/default_w_vnet_integration_private_ip/main.tf +++ b/examples/Commerical/default_w_vnet_integration_private_ip/main.tf @@ -2,7 +2,7 @@ # Licensed under the MIT License. module "mod_aci" { - #source = "github.com/POps-Rox/tf-az-overlays-containerinstance" + #source = "github.com/POps-Rox/terraform-az-overlays-containerinstance" #version = "x.x.x" source = "../../.." diff --git a/examples/Commerical/default_w_vnet_integration_public_ip/main.tf b/examples/Commerical/default_w_vnet_integration_public_ip/main.tf index a855b66..7807a09 100644 --- a/examples/Commerical/default_w_vnet_integration_public_ip/main.tf +++ b/examples/Commerical/default_w_vnet_integration_public_ip/main.tf @@ -2,7 +2,7 @@ # Licensed under the MIT License. module "mod_aci" { - #source = "github.com/POps-Rox/tf-az-overlays-containerinstance" + #source = "github.com/POps-Rox/terraform-az-overlays-containerinstance" #version = "x.x.x" source = "../../.." diff --git a/modules.aci.scaffolding.tf b/modules.aci.scaffolding.tf index 1703869..3d3bdc8 100644 --- a/modules.aci.scaffolding.tf +++ b/modules.aci.scaffolding.tf @@ -6,7 +6,7 @@ #-------------------------------------- # This module will lookup the Azure Region and return the short name for the region module "mod_azure_region_lookup" { - source = "github.com/POps-Rox/tf-az-overlays-azregionslookup" + source = "github.com/POps-Rox/terraform-az-overlays-azregionslookup" azure_region = var.location } @@ -23,7 +23,7 @@ data "azurerm_resource_group" "rgrp" { } module "mod_scaffold_rg" { - source = "github.com/POps-Rox/tf-az-overlays-resourcegroup" + source = "github.com/POps-Rox/terraform-az-overlays-resourcegroup" count = var.create_resource_group ? 1 : 0