diff --git a/infra/container-api-test.bicep b/infra/container-api-test.bicep index a1709b4..4822e28 100644 --- a/infra/container-api-test.bicep +++ b/infra/container-api-test.bicep @@ -8,7 +8,7 @@ param managedIdentityName string = 'bds-test-managedidentity' param keyVaultName string = 'bds-test-keyvault' @description('The name of the container environment.') -param containerName string = 'bds-test-containerenv-api' +param containerEnvName string = 'bds-test-containerenv-api' @description('The name of the container app.') param containerAppName string = 'bds-test-containerapp-api' @@ -33,10 +33,10 @@ param acrPassword string param containerImage string module containerEnv 'modules/containerEnv.bicep' = { - name: containerName + name: containerEnvName params: { vnetName: vnetName - containerAppEnvironmentName: containerName + containerAppEnvironmentName: containerEnvName location: location logAnalyticsWorkspaceName: logAnalyticsWorkspaceName } diff --git a/infra/container-frontend-test.bicep b/infra/container-frontend-test.bicep index f9b09e3..90089d9 100644 --- a/infra/container-frontend-test.bicep +++ b/infra/container-frontend-test.bicep @@ -19,7 +19,6 @@ param acrServer string @description('The name of the ACR username.') param acrUsername string - @secure() @description('The name of the ACR password.') param acrPassword string diff --git a/infra/modules/sqlServer.bicep b/infra/modules/sqlServer.bicep index d303c4f..7a9308e 100644 --- a/infra/modules/sqlServer.bicep +++ b/infra/modules/sqlServer.bicep @@ -57,14 +57,14 @@ resource vnet 'Microsoft.Network/virtualNetworks@2023-04-01' = { properties: { addressSpace: { addressPrefixes: [ - '10.0.0.0/24' + '10.0.0.0/23' ] } subnets: [ { name: subnetName properties: { - addressPrefix: '10.0.0.32/27' + addressPrefix: '10.0.0.0/23' } } ]