Creating Organizations in Snyk
This page has instructions for creating Organizations (Orgs) in Snyk:
Generating the data to create organizations in Snyk
Before an import can begin you must set up Snyk with the Organizations you will populate with Projects.
Snyk recommends that you have as many Organizations in Snyk as you have in the source you are importing from. For GitHub, this means mirroring the GitHub organizations in Snyk. The snyk-api-import
tool provides a utility to use to make this simpler when using Groups and Organizations in Snyk.
Generating the data required to create Organizations in Snyk with the orgs:data
utility
orgs:data
utilityThis utility helps generate data needed to mirror the GitHub.com, GitHub Enterprise, GitLab, Bitbucket Server, or Bitbucket Cloud organization structure in Snyk. This opinionated utility will assume every organization in GitHub.com, GitHub Enterprise, GitLab, Bitbucket Server, or Bitbucket Cloud should become an Organization in Snyk. If this is not what you are looking for, consider using the API endpoint Create a new organization directly to create the structure you need.
Options
GitHub.com and GitHub Enterprise
Set the GitHub.com personal access token as an environment variable:
export GITHUB_TOKEN=your_personal_access_token
Run the command to generate organization data:
GitHub.com:
snyk-api-import orgs:data --source=github --groupId=<snyk_group_id>
GitHub Enterprise:
snyk-api-import orgs:data --source=github-enterprise --groupId=<snyk_group_id> -- sourceUrl=https://ghe.custom.github.com/
This creates the organization data in a file group-<snyk_group_id>-github-<com|enterprise>-orgs.json
GitLab.com and Hosted GitLab
Set the GitLab personal access token as an environment variable:
export GITLAB_TOKEN=your_personal_access_token
Run the command to generate organization data:
GitLab:
snyk-api-import orgs:data --source=gitlab --groupId=<snyk_group_id>
Hosted GitLab:
snyk-api-import orgs:data --source=gitlab --groupId=<snyk_group_id> -- sourceUrl=https://gitlab.custom.com
This creates the organization data in a file group-<snyk_group_id>-gitlab-orgs.json
Bitbucket Server
Note that Bitbucket Server is a hosted environment, and you must provide the custom URL for your Bitbucket Server instance in the command.
Set the Bitbucket Server access token as an environment variable:
export BITBUCKET_SERVER_TOKEN=your_personal_access_token
Run the command to generate organization data:
snyk-api-import orgs:data --source=bitbucket-server --groupId=<snyk_group_id> --sourceUrl=https://bitbucket-server.custom.com
This creates the organization data in a file group-<snyk_group_id>-bitbucket-server-orgs.json
Bitbucket Cloud
Note that the URL for Bitbucket Cloud is https://bitbucket.org/.
Set the Bitbucket Cloud Username and Password as environment variables:
export BITBUCKET_CLOUD_USERNAME=your_bitbucket_cloud_username
andexport BITBUCKET_CLOUD_PASSWORD=your_bitbucket_cloud_password
Run the command to generate organization data:
snyk-api-import orgs:data --source=bitbucket-cloud --groupId=<snyk_group_id>
This creates the organization data in a file group-<snyk_group_id>-bitbucket-cloud-orgs.json
Azure
Note that for Azure, this step must be done manually. Since Azure has no API call for getting the Azure Organizations, the Orgs file must be created manually for the next commands to run. The file should be formatted this way:
After the file is created, you can feed it to the orgs:create
command.
Methods of creating Organizations
Use the generated data file to help create the organizations using the API endpoint Create a new organization or use the provided utility.
Using the API
Use the generated data to feed into the endpoint Create a new organization to generate the Organizations within a Group.
Using the orgs:create
utility
orgs:create
utilitySet the
SNYK_TOKEN
environment variable, your Snyk API token.Run the command to create Organizations:
snyk-api-import orgs:create --noDuplicateNames --includeExistingOrgsInOutput --file=group-<snyk_group_id>-github-<com|enterprise>-orgs.json
.Use the
noDuplicateNames
flag (optional) to skip creating an Organization if the given name is already taken within the Group.Use the
includeExistingOrgsInOutput
flag (optional, default istrue
) to log information for existing Organizations as well as newly created Organizations. To set this flag asfalse
, use --no-includeExistingOrgsInOutput in the command as follows:snyk-api-import orgs:create --no-includeExistingOrgsInOutput --file=group-<snyk_group_id>-github-<com|enterprise>-orgs.json
The file format required for this command is as follows:
groupId
- public id of the Snyk Group where the Organization is to be createdname
- name to use when creating the OrganizationsourceOrgId
- optional public id of a Snyk Organization to copy settings from
Recommendations
Use the endpoint Set notification settings to disable notifications for emails and so on to avoid receiving import notifications.
Use the Update (integration settings) endpoint to disable the fix PRs and PR checks until import is complete to avoid sending extra requests to SCMs (GitHub, GitLab, Bitbucket, and so on).
Last updated