From 1c56ce5d985db8d8c07977c30b8cd6311ff68d06 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Tue, 7 Jul 2026 00:07:38 +1000 Subject: [PATCH] fix: point litellm provider source at the artifactapi registry in root.hcl The module terraform.tf files use the artifactapi terraform-unkin registry as the provider source, but the generated root backend.tf still referenced git.unkin.net, which is not a valid OpenTofu provider registry host and failed the plan pipeline. Align root.hcl with the modules. --- environments/root.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environments/root.hcl b/environments/root.hcl index 32a12f2..7b69eac 100644 --- a/environments/root.hcl +++ b/environments/root.hcl @@ -36,7 +36,7 @@ terraform { version = "2.23.0" } litellm = { - source = "git.unkin.net/unkin/litellmvaultsecret" + source = "artifactapi.k8s.syd1.au.unkin.net/terraform-unkin/litellmvaultsecret" version = "0.1.0" } }