Errors installing SentinelOne extension on VMSS

Muresanu, Catalin 0 Reputation points
2023-11-08T12:57:16.8566667+00:00

I am trying to install sentinelone on my vmss instances via bicep, but I am getting this error:

Error getting download path from management, please contact SentinelOne support". More information on troubleshooting is available at https://aka.ms/vmextensionwindowstroubleshoot

This is how my bicep code looks like:

resource sentinelOneExtension1 'Microsoft.Compute/virtualMachineScaleSets/extensions@2023-03-01' = {
  name: 'SentinelOne-extension-${vmssReferenceName}-${parRegion}'
  parent: vmssReference
  properties: {
    autoUpgradeMinorVersion: true
    enableAutomaticUpgrade: false
    protectedSettingsFromKeyVault: {
      secretUrl: parSentinelOneAPISecretUrl
      sourceVault: {
        id: parSentinelOneKv
      }
    }
    publisher: 'SentinelOne.WindowsExtension'
    settings: {
      WindowsAgentVersion: '23.2.3.358'
      SiteToken: parSentinelOneSiteToken
    }
    suppressFailures: false
    type: 'WindowsExtension'
    typeHandlerVersion: '1.4'
  }
}

I am using Bicep 0.23.1.
I also tried adding the extension inside the vmss resource, inline, but it's the same thing.

Azure Virtual Machine Scale Sets
Azure Virtual Machine Scale Sets
Azure compute resources that are used to create and manage groups of heterogeneous load-balanced virtual machines.
448 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Naushad Alam 0 Reputation points
    2024-07-17T19:22:27.9033333+00:00

    I am getting the same issue, I tried for Windows and Linux and I got the same issue.

    I got the same error while installing from portal, also same error installing while AZ CLI. Could someone pls help on this ?

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.