Skip to content

Commit

Permalink
fix: change size of subnet to minimum requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
asleboon committed Jan 24, 2025
1 parent d1823b9 commit 3e42ff8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions infra/container-api-test.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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
}
Expand Down
1 change: 0 additions & 1 deletion infra/container-frontend-test.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion infra/modules/sqlServer.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ resource vnet 'Microsoft.Network/virtualNetworks@2023-04-01' = {
{
name: subnetName
properties: {
addressPrefix: '10.0.0.32/27'
addressPrefix: '10.0.0.0/23'
}
}
]
Expand Down

0 comments on commit 3e42ff8

Please sign in to comment.