From 025a0a6e62b8c857b426aabc81c69d7d6a526769 Mon Sep 17 00:00:00 2001 From: Ryan VanGundy Date: Fri, 25 Jul 2025 15:53:31 -0400 Subject: [PATCH] fix(template): Exclude backend from default config We shouldn't assume a terraform backend in the blueprint itself. We'll determine this through other means. This breaks automatic rollout as we don't yet support true bootstrapping. So, a generated `backend.tfvars` file caused failures for aws and azure. --- contexts/_template/blueprint.jsonnet | 6 ------ 1 file changed, 6 deletions(-) diff --git a/contexts/_template/blueprint.jsonnet b/contexts/_template/blueprint.jsonnet index c0d876ce..ba263021 100644 --- a/contexts/_template/blueprint.jsonnet +++ b/contexts/_template/blueprint.jsonnet @@ -17,9 +17,6 @@ local repositoryConfig = { // Platform-specific terraform configurations local terraformConfigs = { "aws": [ - { - path: "backend/s3", - }, { path: "network/aws-vpc", }, @@ -36,9 +33,6 @@ local terraformConfigs = { } ], "azure": [ - { - path: "backend/azurerm", - }, { path: "network/azure-vnet", },