From dca1e14be4ec536b78d60ebe17f53e093b562f25 Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Tue, 21 Nov 2023 14:56:03 +0100 Subject: [PATCH] fix: don't use param file --- .github/workflows/e2e.yml | 1 - bicep/main.bicep | 2 +- bicep/main.test.bicepparam | 3 --- 3 files changed, 1 insertion(+), 5 deletions(-) delete mode 100644 bicep/main.test.bicepparam diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index ff4ced9..b62d294 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -47,7 +47,6 @@ jobs: scope: subscription region: ${{ env.LOCATION }} template: bicep/main.bicep - parameters: bicep/main.test.bicepparams deploymentName: ${{ env.DEPLOYMENT_NAME }} none-test: diff --git a/bicep/main.bicep b/bicep/main.bicep index b6c1eca..cc6cbe3 100644 --- a/bicep/main.bicep +++ b/bicep/main.bicep @@ -10,7 +10,7 @@ targetScope = 'subscription' 'A' // Acceptance 'P' // Production ]) -param environment string +param environment string = 'T' param location string = 'westeurope' param name object = { tenantId: 'BVDB' diff --git a/bicep/main.test.bicepparam b/bicep/main.test.bicepparam deleted file mode 100644 index 5c7b6fa..0000000 --- a/bicep/main.test.bicepparam +++ /dev/null @@ -1,3 +0,0 @@ -using 'main.bicep' - -param environment = 'T'