This repository is in maintenance mode, no new features are being developed. Bug & security fixes will continue to be delivered. Open source contributions are welcome for small features & fixes (no breaking changes)
The Snyk plugin displays security details from snyk.io.
Requirements: Snyk API enabled (Paid plans only)
- Install plugin
# packages/app
yarn add --cwd packages/app backstage-plugin-snyk
- Add plugin to the app
// packages/app/src/App.tsx
import { EntitySnykContent } from 'backstage-plugin-snyk';
....
<FlatRoutes>
...
<Route path="/snyk" element={<EntitySnykContent />}/>
...
</FlatRoutes>
- Add Snyk card and tab to the entity page The plugin is composed of 2 main parts
- Snyk tile on the entity overview page
- Security tab in the entity displaying further details
a. Import the elements
// packages/app/src/components/catalog/EntityPage.tsx
import { SnykOverview, EntitySnykContent, isSnykAvailable } from 'backstage-plugin-snyk';
// packages/app/src/components/catalog/EntityPage.tsx
const entityWarningContent = (
<>
...
<EntitySwitch>
<EntitySwitch.Case if={isSnykAvailable}>
<Grid item md={6}>
<SnykOverview />
</Grid>
</EntitySwitch.Case>
</EntitySwitch>
...
</>
);
c. Add the tab (feel free to rename title to Security, snyk, vulns, whatever you think is best)
const ServiceEntityPage = (
<EntityLayoutWrapper>
...
<EntityLayout.Route path="/snyk" title="Security">
<EntitySnykContent />
</EntityLayout.Route>
...
</EntityLayoutWrapper>
);
- Add snyk proxy config to app-config.yaml file at the root directory. If using Snyk self hosted, adjust target to https://YOURHOSTNAME/api. User Agent helps us see how much API traffic comes from backstage setups so we can invest more in the plugin !
proxy:
...
'/snyk':
target: https://snyk.io/api/v1
headers:
User-Agent: tech-services/backstage-plugin/1.0
Authorization: token ${SNYK_TOKEN}
...
- Get your Snyk token (a service account with Viewer permission at your group level is preferred) and provide SNYK_TOKEN env var with the value "token "
export SNYK_TOKEN="token 123-123-123-123"
- Add the following annotations to your entities.
snyk.io/org-name
is the Snyk organization name where your project is. Use the slug (like in url, or in the org settings page), not the display namesnyk.io/project-ids
are the project ID (see slug in url or ID in project settings) If multiple projects (like multiple package.json or pom files, add them with increasing number), add them comma separated ....
Example:
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: Java-goof
description: Java Goof
....
annotations:
snyk.io/org-name: snyk-demo-org
snyk.io/project-ids: 12345678-1234-1234-1234-123456789012,12345678-1234-1234-1234-123456789013,12345678-1234-1234-1234-123456789014
...
spec:
type: service
lifecycle: production
owner: guest
....
-
Missing or wrong token set in the backend proxy.\
-
404s from Snyk API? Add pathRewrite your app-config.yaml proxy to the following
'/snyk':
target: https://snyk.io/api/v1
headers:
User-Agent: tech-services/backstage-plugin/1.0
Authorization:
$env: SNYK_TOKEN
pathRewrite:
'^/proxy/snyk/': '/'
Infrastructure as Code and Snyk Code projects are not supported currently.