Scan your connected GitHub repository or Azure DevOps project

You can set up Microsoft Security DevOps to scan your connected GitHub repository or Azure DevOps project. Use a GitHub action or an Azure DevOps extension to run Microsoft Security DevOps only on your Infrastructure as Code (IaC) source code, and help reduce your pipeline runtime.

This article shows you how to apply a template YAML configuration file to scan your connected repository or project specifically for IaC security issues by using Microsoft Security DevOps rules.

Prerequisites

Set up and run a GitHub action to scan your connected IaC source code

To set up an action and view scan results in GitHub:

  1. Sign in to GitHub.

  2. Go to the main page of your repository.

  3. In the file directory, select .github > workflows > msdevopssec.yml.

    For more information about working with an action in GitHub, see Prerequisites.

  4. Select the Edit this file (pencil) icon.

    Screenshot that highlights the Edit this file icon for the msdevopssec.yml file.

  5. In the Run analyzers section of the YAML file, add this code:

    with:
        categories: 'IaC'
    

    Note

    Values are case sensitive.

    Here's an example:

    Screenshot that shows the information to add to the YAML file.

  6. Select Commit changes . . . .

  7. Select Commit changes.

    Screenshot that shows where to select Commit changes on the GitHub page.

  8. (Optional) Add an IaC template to your repository. If you already have an IaC template in your repository, skip this step.

    For example, commit an IaC template that you can use to deploy a basic Linux web application.

    1. Select the azuredeploy.json file.

      Screenshot that shows where the azuredeploy.json file is located.

    2. Select Raw.

    3. Copy all the information in the file, like in the following example:

      {
        "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
        "contentVersion": "1.0.0.0",
        "parameters": {
          "webAppName": {
            "type": "string",
            "defaultValue": "AzureLinuxApp",
            "metadata": {
              "description": "The base name of the resource, such as the web app name or the App Service plan."
            },
            "minLength": 2
          },
          "sku": {
            "type": "string",
            "defaultValue": "S1",
            "metadata": {
              "description": "The SKU of the App Service plan."
            }
          },
          "linuxFxVersion": {
            "type": "string",
            "defaultValue": "php|7.4",
            "metadata": {
              "description": "The runtime stack of the current web app."
            }
          },
          "location": {
            "type": "string",
            "defaultValue": "[resourceGroup().location]",
            "metadata": {
              "description": "The location for all resources."
            }
          }
        },
        "variables": {
          "webAppPortalName": "[concat(parameters('webAppName'), '-webapp')]",
          "appServicePlanName": "[concat('AppServicePlan-', parameters('webAppName'))]"
        },
        "resources": [
          {
            "type": "Microsoft.Web/serverfarms",
            "apiVersion": "2020-06-01",
            "name": "[variables('appServicePlanName')]",
            "location": "[parameters('location')]",
            "sku": {
              "name": "[parameters('sku')]"
            },
            "kind": "linux",
            "properties": {
              "reserved": true
            }
          },
          {
            "type": "Microsoft.Web/sites",
            "apiVersion": "2020-06-01",
            "name": "[variables('webAppPortalName')]",
            "location": "[parameters('location')]",
            "kind": "app",
            "dependsOn": [
              "[resourceId('Microsoft.Web/serverfarms', variables('appServicePlanName'))]"
            ],
            "properties": {
              "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('appServicePlanName'))]",
              "siteConfig": {
                "linuxFxVersion": "[parameters('linuxFxVersion')]"
              }
            }
          }
        ]
      }
      
    4. In your GitHub repository, go to the .github/workflows folder.

    5. Select Add file > Create new file.

      Screenshot that shows you how to create a new file.

    6. Enter a name for the file.

    7. Paste the copied information in the file.

    8. Select Commit new file.

    The template file is added to your repository.

    Screenshot that shows that the new file you created is added to your repository.

  9. Verify that the Microsoft Security DevOps scan is finished:

    1. For the repository, select Actions.

    2. Select the workflow to see the action status.

  10. To view the results of the scan, go to Security > Code scanning alerts.

    You can filter by tool to see only the IaC findings.

Set up and run an Azure DevOps extension to scan your connected IaC source code

To set up an extension and view scan results in Azure DevOps:

  1. Sign in to Azure DevOps.

  2. Select your project.

  3. Select Pipelines.

  4. Select the pipeline where your Azure DevOps extension for Microsoft Security DevOps is configured.

  5. Select Edit pipeline.

  6. In the pipeline YAML configuration file, below the displayName line for the MicrosoftSecurityDevOps@1 task, add this code:

    inputs:
        categories: 'IaC'
    

    Here's an example:

    Screenshot that shows where to add the IaC categories line in the pipeline configuration YAML file.

  7. Select Save.

  8. (Optional) Add an IaC template to your Azure DevOps project. If you already have an IaC template in your project, skip this step.

  9. Choose whether to commit directly to the main branch or to create a new branch for the commit, and then select Save.

  10. To view the results of the IaC scan, select Pipelines, and then select the pipeline you modified.

  11. See see more details, select a specific pipeline run.

View details and remediation information for applied IaC rules

The IaC scanning tools that are included with Microsoft Security DevOps are Template Analyzer (PSRule is included in Template Analyzer) and Terrascan.

Template Analyzer runs rules on Azure Resource Manager templates (ARM templates) and Bicep templates. For more information, see the Template Analyzer rules and remediation details.

Terrascan runs rules on ARM templates and templates for CloudFormation, Docker, Helm, Kubernetes, Kustomize, and Terraform. For more information, see the Terrascan rules.

To learn more about the IaC scanning tools that are included with Microsoft Security DevOps, see:

In this article, you learned how to set up a GitHub action and an Azure DevOps extension for Microsoft Security DevOps to scan for IaC security misconfigurations and how to view the results.

To get more information: