Skip to content

Commit 5edbb08

Browse files
committed
Moved unused bicep files to 'old' folder
1 parent c7edb49 commit 5edbb08

15 files changed

+4
-11
lines changed

infra/main.bicepparam

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using './main.bicep'
22

3-
param enableTelemetry = true
43
param solutionPrefix = null //Type a string value to customize the prefix for your resource names
5-
param solutionLocation = null
4+
param solutionLocation = readEnvironmentVariable('AZURE_LOCATION', 'swedencentral')
5+
param azureOpenAILocation = readEnvironmentVariable('AZURE_ENV_OPENAI_LOCATION', 'swedencentral')
66
param logAnalyticsWorkspaceConfiguration = {
77
dataRetentionInDays: 30
88
}
@@ -19,4 +19,3 @@ param webServerFarmConfiguration = {
1919
skuCapacity: 1
2020
skuName: 'B2'
2121
}
22-
param azureOpenAILocation = readEnvironmentVariable('AZURE_ENV_OPENAI_LOCATION', 'swedencentral')

infra/main.waf-aligned.bicepparam

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ using './main.bicep'
22

33
param enableTelemetry = true
44
param solutionPrefix = null //Type a string value to customize the prefix for your resource names
5-
param solutionLocation = 'australiaeast'
5+
param solutionLocation = readEnvironmentVariable('AZURE_LOCATION', 'swedencentral')
6+
param azureOpenAILocation = readEnvironmentVariable('AZURE_ENV_OPENAI_LOCATION', 'swedencentral')
67
param virtualMachineConfiguration = {
78
adminUsername: 'adminuser'
89
adminPassword: 'P@ssw0rd1234'

0 commit comments

Comments
 (0)