Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Dany Contreras committed Mar 4, 2025
1 parent 85e7205 commit 5f3ec72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions workload/arm/deploy-baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"_generator": {
"name": "bicep",
"version": "0.33.93.31351",
"templateHash": "5127540398771268904"
"templateHash": "9826152848146163813"
},
"name": "AVD Accelerator - Baseline Deployment",
"description": "AVD Accelerator - Deployment Baseline",
Expand Down Expand Up @@ -8613,9 +8613,7 @@
"value": "[parameters('avdHostPoolType')]"
},
"preferredAppGroupType": "[if(equals(parameters('hostPoolPreferredAppGroupType'), 'RemoteApp'), createObject('value', 'RailApplications'), createObject('value', 'Desktop'))]",
"deployScalingPlan": {
"value": "[variables('varDeployScalingPlan')]"
},
"deployScalingPlan": "[if(not(empty(parameters('avdEnterpriseAppObjectId'))), createObject('value', variables('varDeployScalingPlan')), createObject('value', false()))]",
"scalingPlanExclusionTag": {
"value": "[variables('varScalingPlanExclusionTag')]"
},
Expand Down
2 changes: 1 addition & 1 deletion workload/bicep/deploy-baseline.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@ module managementPLane './modules/avdManagementPlane/deploy.bicep' = {
hostPoolLoadBalancerType: avdHostPoolLoadBalancerType
hostPoolType: avdHostPoolType
preferredAppGroupType: (hostPoolPreferredAppGroupType == 'RemoteApp') ? 'RailApplications' : 'Desktop'
deployScalingPlan: varDeployScalingPlan
deployScalingPlan: !empty(avdEnterpriseAppObjectId) ? varDeployScalingPlan : false
scalingPlanExclusionTag: varScalingPlanExclusionTag
scalingPlanSchedules: (avdHostPoolType == 'Pooled')
? varPooledScalingPlanSchedules
Expand Down

0 comments on commit 5f3ec72

Please sign in to comment.