Azure-Sentinel/DataConnectors/AADUserInfo
v-sabiraj c1f90ac5b3 Update azuredeploy.json 2022-12-29 18:27:09 +05:30
..
AADUserInfo Move New Community Content to Proper Location 2021-06-10 10:41:18 -07:00
.funcignore Move New Community Content to Proper Location 2021-06-10 10:41:18 -07:00
.gitignore Move New Community Content to Proper Location 2021-06-10 10:41:18 -07:00
AADUserInfo_template.zip Updated AADUser Functionapp 2022-12-23 14:24:57 +05:30
README.MD Added note to note section 2021-08-13 11:39:40 -04:00
azuredeploy.json Update azuredeploy.json 2022-12-29 18:27:09 +05:30
host.json Updated AADUser Functionapp 2022-12-23 14:24:57 +05:30
profile.ps1 Move New Community Content to Proper Location 2021-06-10 10:41:18 -07:00
proxies.json Move New Community Content to Proper Location 2021-06-10 10:41:18 -07:00
requirements.psd1 Move New Community Content to Proper Location 2021-06-10 10:41:18 -07:00

README.MD

Deploy a Function App for collecting Azure AD User Information data into Azure Sentinel

This function app run daily, query Azure AD for all users and write the information to Log Analytics.

Notes:

Deploy the Function App

The easiest way is via the provided ARM templates:

1: Deploy via Azure ARM Template

  1. Deploy the template.

Deploy to Azure

Alternatively you can deploy the elements manually.

2: Deploy via VS Code

Note: You will need to prepare VS code for Azure function development. See https://docs.microsoft.com/azure/azure-functions/functions-create-first-function-powershell#prerequisites

  1. Download the [Zip](https://github.com/Azure/Azure-Sentinel/blob/master/Soltuions/AADUserInfo/Data Connectors/AADUserInfo_template.zip?raw=true) file of the Azure Funciton app from Github.
  2. Extract to a location on your local host.
  3. Open VS Code.
  4. Click File -> Open Folder.
  5. Select the top level folder from extracted files.
  6. Type Crtl+Shift+P.
  7. Click Azure Functions: Deploy to function app. You maybe asked to sign in to Azure.
  8. Click Create New function app in Azure (advanced).
  9. Provide a unique name like "AADUserInfo". Press Enter.
  10. Click Windows.
  11. Click Consumption.
  12. Click PowerShell.
  13. Click Create new Resource Group.
  14. Press enter to accept the name.
  15. Click Create a new storage Account.
  16. Press enter to accept the name.
  17. Click Create new Application Insights resource.
  18. Press enter to accept the name.
  19. Pick a location to deploy in.
  20. Deployment will begin.
  21. Wait for the deployment to complete, then click upload settings in the bottom right.
  22. Click yes to all to upload.
  23. Go to the Azure Portal.
  24. Go to the resource group that was created. Click the Function.
  25. Click Stop.
  26. Click Identity.
  27. Click On under system assigned. Click Save. Click Yes.
  28. Click Configuration
  29. Click General Settings.
  30. Change Platform to 64 Bit. Click Save.

Create a Key Vault

  1. Go to the Azure Portal.
  2. Go to the resource group that was created. Click Add.
  3. Type Key Vault.
  4. Create a Key vault.
  5. Go to the resource created.
  6. Click Access Policies.
  7. Click Add Access Policy.
  8. Select Secret Management from Configure from template.
  9. Click Select Principal.
  10. Search for the name of the function app. Click Select.
  11. Click Add.
  12. Click Save.
  13. Click Secrets.
  14. Click Generate.
  15. Enter WorkspaceKey. Paste in your Azure Sentinel Workspace Key. Click Create.
  16. Click Generate.
  17. Click WorkspaceKey and copy the current version string to a temporary location.

Configure Settings for the Function

  1. Go to the Azure Portal.
  2. Go to the resource group that was created. Click the Function.
  3. Click Configuration.
  4. Click edit next to workspaceKey.
  5. Update the value using the string copied from KeyVault.
  • @Microsoft.KeyVault(SecretUri=https:///secrets/workspaceKey/)
  1. Click Ok.
  2. Click edit next to workspaceId.
  3. Update the value with your Sentinel Workspace Id.
  4. Click Ok.
  5. Click Save.

If successfully deployed you should start to see events appear in your Azure Sentinel workspace as soon as they are generated. If you run into issues there are a number of options for monitoring and deugging your Function App.