Skip to content

Commit c2509d0

Browse files
committed
Update NSG, container registry
1 parent 287aa0e commit c2509d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

infra/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ param webAppExists bool
300300
@allowed(['appservice', 'containerapps'])
301301
param deploymentTarget string = 'appservice'
302302
param acaIdentityName string = deploymentTarget == 'containerapps' ? '${environmentName}-aca-identity' : ''
303-
param acaManagedEnvironmentName string = deploymentTarget == 'containerapps' ? '${environmentName}-aca-envnet' : ''
303+
param acaManagedEnvironmentName string = deploymentTarget == 'containerapps' ? '${environmentName}-aca-env' : ''
304304
param containerRegistryName string = deploymentTarget == 'containerapps'
305305
? '${replace(toLower(environmentName), '-', '')}acr'
306306
: ''

infra/network-isolation.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var backendSubnetName = 'backend-subnet'
2222
var gatewaySubnetName = 'GatewaySubnet' // Required name for Gateway subnet
2323
var dnsResolverSubnetName = 'dns-resolver-subnet'
2424
var appServiceSubnetName = 'app-service-subnet'
25-
var containerAppsSubnetName = 'app-int-subnet'
25+
var containerAppsSubnetName = 'container-apps-subnet'
2626

2727
module containerAppsNSG 'br/public:avm/res/network/network-security-group:0.5.1' = if (deploymentTarget == 'containerapps') {
2828
name: 'container-apps-nsg'

0 commit comments

Comments
 (0)