Skip to content

Commit 23321c0

Browse files
authored
additional updates to ADO SMS Docs (#1919)
1 parent 4993035 commit 23321c0

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

docs/deployment/managed-scanning/azure.md

+4
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,10 @@ The following steps revoke the code access you previously granted Semgrep for al
9696
2. Find the Azure DevOps entry on the list of **Source code managers** and click **Remove**.
9797
3. Click **Remove** to confirm.
9898

99+
## Troubleshooting: multiple projects
100+
101+
If you currently scan Azure DevOps repositories in your CI pipeline, you may see findings assigned to two separate projects once you enable Semgrep Managed Scanning. For example, findings from Managed Scanning go to the `semgrep/frontend/webpage` project, while findings from CI scans go to the `frontend/webpage` project. If this is the case, Semgrep AppSec Platform flags these findings with **Possible duplicate**. Please [contact support](/support) for addition assistance.
102+
99103
## Appendices
100104

101105
<details>

docs/semgrep-ci/network-broker.md

+23
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,23 @@ Update the `config.yaml` by replacing the SCM information containing `YOUR_BASE_
101101
<Tabs
102102
defaultValue="gh"
103103
values={[
104+
{label: 'Azure DevOps', value: 'ado'},
104105
{label: 'Bitbucket', value: 'bb'},
105106
{label: 'GitHub', value: 'gh'},
106107
{label: 'GitLab', value: 'gl'},
107108
]}
108109
>
109110

111+
<TabItem value='ado'>
112+
113+
<pre class="language-console"><code>
114+
azuredevops:
115+
&nbsp;&nbsp;baseURL: https://<span className="placeholder">ADO_BASE_URL</span>/*
116+
&nbsp;&nbsp;token: <span className="placeholder">ADO_PAT</span>
117+
</code></pre>
118+
119+
</TabItem>
120+
110121
<TabItem value='bb'>
111122

112123
Bitbucket is compatible with Network Broker versions 0.20.0 and later.
@@ -209,12 +220,24 @@ To enable Managed Scans when using Network Broker, ensure that you've updated yo
209220
<Tabs
210221
defaultValue="gh"
211222
values={[
223+
{label: 'Azure DevOps', value: 'ado'},
212224
{label: 'Bitbucket', value: 'bb'},
213225
{label: 'GitHub', value: 'gh'},
214226
{label: 'GitLab', value: 'gl'},
215227
]}
216228
>
217229

230+
<TabItem value='ado'>
231+
232+
<pre class="language-console"><code>
233+
azuredevops:
234+
&nbsp;&nbsp;baseURL: https://<span className="placeholder">ADO_BASE_URL</span>/*
235+
&nbsp;&nbsp;token: <span className="placeholder">ADO_PAT</span>
236+
&nbsp;&nbsp;allowCodeAccess: true
237+
</code></pre>
238+
239+
</TabItem>
240+
218241
<TabItem value='bb'>
219242

220243
<pre class="language-console"><code>

0 commit comments

Comments
 (0)