Azure-Sentinel/DataConnectors/GithubFunction
v-amolpatil 10f239299b migrate app insights to log analytic workspace code change in azure deploy files 2024-01-10 15:30:29 +05:30
..
AzureFunctionGitHub V laanjana/update runtime version update( 4) and extensionBundle version (#6675) 2022-11-28 18:31:42 +05:30
Function Dependencies Deleted old deployment package 2021-03-12 17:36:21 -08:00
CHANGELOG.MD Updated Changelog 2021-03-12 17:40:37 -08:00
Connector_REST_API_FunctionApp_GitHub.json Updated REST Connector template 2021-03-12 17:50:03 -08:00
azuredeploy.json migrate app insights to log analytic workspace code change in azure deploy files 2024-01-10 15:30:29 +05:30
readme.md Updating Deploy buttons and links part 2 2021-06-16 01:40:49 +00:00

readme.md

Ingest GitHub AuditLog and API Data

Author: Nicholas DiCola, Sreedhar Ande

GitHubLogs Azure Function ingests the following logs from GitHub

  1. AuditLog via (GraphQL)[https://developer.github.com/v4/interface/auditentry/] events and writes them to a custom log table called GitHub_CL.
  2. Traffic Logs [https://developer.github.com/v3/repos/traffic/] data and writes them to a custom log table called GitHubRepoLogs_CL.
  3. Security Vulnerability logs [https://developer.github.com/v4/object/securityvulnerability/] data and writes them to a custom log table called GitHubRepoLogs_CL

Following are the configuration steps to deploy Function App.

Pre-requisites

A GitHub API Token is required. See the documentation to learn more about the GitHub Personal Access Token.

Configuration Steps to Deploy Function App

  1. Click on Deploy to Azure (For both Commercial & Azure GOV)
    Deploy to Azure Deploy to Azure Gov

  2. Select the preferred Subscription, Resource Group and Location
    Note
    Best practice : Create new Resource Group while deploying - all the resources of your custom Data connector will reside in the newly created Resource Group

  3. Enter the following value in the ARM template deployment

    "PersonalAccessToken": This is the GITHUB PAT  
    "Workspace Id": The Sentinel Log Analytics Workspace Id  
    "Workspace Key": The Sentinel Log Analytics Workspace Key  
    "Function Schedule": The `TimerTrigger` makes it incredibly easy to have your functions executed on a schedule  
    

Post Deployment Steps

  1. There are two json files (ORGS.json and lastrun-Audit.json) in Function Dependencies folder

  2. Edit the ORGS.json file and update "org": "sampleorg" and replace sample org with your org name.

    If you have single org
    [
    	{
    		"org": "sampleorg1"
    	}
    ]  
    
    If you have multiple org's
    [
    	{
    		"org": "sampleorg1"
    	},
    	{
    		"org": "sampleorg2"
    	},
    	{
    		"org": "sampleorg3"
    	}
    ]
    
  3. Edit lastrun-Audit.json and update "org": "sampleorg" and replace sample org with your org name

    If you have single org
    
    [
    	{
    		"org":  "sampleorg1",
    		"lastContext":  "",
    		"lastRun":  ""
    	}
    ]  
    
    If you have multiple org's
    
    [
    	{
    		"org":  "sampleorg1",
    		"lastContext":  "",
    		"lastRun":  ""
    	},
    	{
    		"org":  "sampleorg2",
    		"lastContext":  "",
    		"lastRun":  ""
    	}
    ]
    
  4. Upload the following files to the storage account "github-repo-logs" container from

    ORGS.json
    lastrun-Audit.json
    
  5. PersonalAccessToken and Workspace Key will be placed as "Secrets" in the Azure KeyVault <<Function App Name>><<uniqueid>> with only Azure Function access policy. If you want to see/update these secrets,

    	a. Go to Azure KeyVault `<<Function App Name>><<uniqueid>>`
    	b. Click on "Access Policies" under Settings
    	c. Click on "Add Access Policy"
    		i. Configure from template : Secret Management
    		ii. Key Permissions : GET, LIST, SET
    		iii. Select Prinicpal : <<Your Account>>
    		iv. Add
    	d. Click "Save"
    
    
  6. The TimerTrigger makes it incredibly easy to have your functions executed on a schedule. This sample demonstrates a simple use case of calling your function based on your schedule provided while deploying. If you want to change the schedule

    a.	Click on Function App "Configuration" under Settings 
    b.	Click on "Schedule" under "Application Settings"
    c.	Update your own schedule using cron expression.
    

    Note: For a TimerTrigger to work, you provide a schedule in the form of a cron expression(See the link for full details). A cron expression is a string with 6 separate expressions which represent a given schedule via patterns. The pattern we use to represent every 5 minutes is 0 */5 * * * *. This, in plain text, means: "When seconds is equal to 0, minutes is divisible by 5, for any hour, day of the month, month, day of the week, or year".

Note: there are two parsers (here)[https://github.com/Azure/Azure-Sentinel/blob/master/Parsers/GitHub] to make the logs useful