Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions infra/modules/services/selfHostedIntegrationRuntime.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,15 @@ resource vmss001 'Microsoft.Compute/virtualMachineScaleSets@2021-07-01' = {
adminPassword: administratorPassword
computerNamePrefix: take(vmssName, 9)
customData: loadFileAsBase64('../../../code/installSHIRGateway.ps1')
windowsConfiguration: {
enableAutomaticUpdates: true
patchSettings: {
assessmentMode: 'AutomaticByPlatform'
enableHotpatching: false
patchMode: 'AutomaticByPlatform'
}
provisionVMAgent: true
}
}
networkProfile: {
networkInterfaceConfigurations: [
Expand Down