Skip to content

Commit

Permalink
added tolower
Browse files Browse the repository at this point in the history
  • Loading branch information
jwaltireland committed Nov 4, 2024
1 parent 66285a7 commit 92fa097
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workload/bicep/deploy-baseline-arpah.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -1538,7 +1538,7 @@ module sessionHosts './modules/avdSessionHosts/deploy-arpah.bicep' = [
diskType: avdSessionHostDiskType
customOsDiskSizeGB: customOsDiskSizeGb
location: avdSessionHostLocation
namePrefix: '${varSessionHostNamePrefix}${first(deploymentEnvironment)}'
namePrefix: '${varSessionHostNamePrefix}${first(toLower(deploymentEnvironment))}'
vmSize: avdSessionHostsSize
enableAcceleratedNetworking: enableAcceleratedNetworking
securityType: securityType == 'Standard' ? '' : securityType
Expand Down Expand Up @@ -1611,7 +1611,7 @@ module sessionHostsRemoteApp './modules/avdSessionHosts/deploy-arpah.bicep' = [
diskType: avdSessionHostDiskType
customOsDiskSizeGB: customOsDiskSizeGb
location: avdSessionHostLocation
namePrefix: '${varSessionHostNamePrefix}${first(deploymentEnvironment)}ra'
namePrefix: '${varSessionHostNamePrefix}${first(toLower(deploymentEnvironment))}ra'
vmSize: avdSessionHostsSize
enableAcceleratedNetworking: enableAcceleratedNetworking
securityType: securityType == 'Standard' ? '' : securityType
Expand Down

0 comments on commit 92fa097

Please sign in to comment.