diff --git a/LICENSE b/LICENSE index afdfe4e..bc9c36b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 Aditya Patwardhan +Copyright (c) 2020 Microsoft Corporation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 5559e03..407e964 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Compliance task library +**Contents of this repository are intended for internal Microsoft use.** + This repository contains Azure DevOPS YAML template for the compliance tasks needed for release products. The step templates can be included in the repository using [multi-checkout](https://docs.microsoft.com/en-us/azure/devops/pipelines/repos/multi-repo-checkout?view=azure-devops). @@ -49,7 +51,7 @@ The following sample shows how the templates can be included in your release YAM sourceScanPath: '$(Build.SourcesDirectory)' # credscan suppressionsFile: '' - # policheck + # TermCheck optionsRulesDBPath: '' optionsFTPath: '' # tsa-upload diff --git a/assembly-module-compliance.yml b/assembly-module-compliance.yml index cea1a7c..4b7e020 100644 --- a/assembly-module-compliance.yml +++ b/assembly-module-compliance.yml @@ -10,7 +10,7 @@ parameters: sourceScanPath: '$(Build.SourcesDirectory)' # credscan suppressionsFile: '' - # policheck + # TermCheck optionsRulesDBPath: '' optionsFTPath: '' # tsa-upload @@ -43,7 +43,7 @@ steps: - template: template-compliance/defender.yml -- template: template-compliance/policheck.yml +- template: template-compliance/TermCheck.yml parameters: optionsRulesDBPath: '' optionsFTPath: '' @@ -61,4 +61,4 @@ steps: APIScan: ${{ parameters.APIScan }} BinSkim: true CredScan: true - PoliCheck: true + TermCheck: true diff --git a/script-module-compliance.yml b/script-module-compliance.yml index fc5ac87..1dfedc7 100644 --- a/script-module-compliance.yml +++ b/script-module-compliance.yml @@ -3,7 +3,7 @@ parameters: sourceScanPath: '$(Build.SourcesDirectory)' # credscan suppressionsFile: '' - # policheck + # TermCheck optionsRulesDBPath: '' optionsFTPath: '' # tsa-upload @@ -24,7 +24,7 @@ steps: - template: template-compliance/defender.yml -- template: template-compliance/policheck.yml +- template: template-compliance/TermCheck.yml parameters: optionsRulesDBPath: '' optionsFTPath: '' @@ -42,4 +42,4 @@ steps: APIScan: ${{ parameters.APIScan }} BinSkim: true CredScan: true - PoliCheck: true + TermCheck: true diff --git a/template-compliance/policheck.yml b/template-compliance/TermCheck.yml similarity index 93% rename from template-compliance/policheck.yml rename to template-compliance/TermCheck.yml index 77a48d2..a5c39f6 100644 --- a/template-compliance/policheck.yml +++ b/template-compliance/TermCheck.yml @@ -4,7 +4,7 @@ parameters: steps: - task: securedevelopmentteam.vss-secure-development-tools.build-task-policheck.PoliCheck@1 - displayName: 'Run PoliCheck' + displayName: 'Run TermCheck' inputs: targetType: F optionsFC: 0 diff --git a/template-compliance/sdtreport.yml b/template-compliance/sdtreport.yml index 3427a6d..4888249 100644 --- a/template-compliance/sdtreport.yml +++ b/template-compliance/sdtreport.yml @@ -2,7 +2,7 @@ parameters: APIScan: true BinSkim: true CredScan: true - PoliCheck: true + TermCheck: true steps: - task: securedevelopmentteam.vss-secure-development-tools.build-task-report.SdtReport@1 @@ -12,5 +12,5 @@ steps: APIScan: ${{ parameters.APIScan }} BinSkim: ${{ parameters.BinSkim }} CredScan: ${{ parameters.CredScan }} - PoliCheck: ${{ parameters.PoliCheck }} + PoliCheck: ${{ parameters.TermCheck }} PoliCheckBreakOn: Severity2Above