3.0.0 • Published 21 days ago

@jupiterone/graph-azure-devops v3.0.0

Weekly downloads
-
License
MPL-2.0
Repository
github
Last release
21 days ago

Graph Azure DevOps

Build Status Gitleaks Status

Development Environment

Prerequisites

You must have Node.JS installed to run this project. If you don't already have it installed, you can can download the installer here. You can alternatively install Node.JS using a version manager like fnm or nvm.

Setup

Installing dependencies

First, you'll need to install yarn. Then, from the root of this project, run yarn install to install dependencies.

Loading configuration

An integration executes against a configuration that provides credentials and any other information necessary to ingest data from the provider. The configuration fields are defined in src/instanceConfigFields.ts while the configuration values are stored in a .env file at the root of this project. This allows the integration to automatically load the field values and complain when they're not provided.

Create a .env file at the root of this project and add environment variables to match what is in src/instanceConfigFields.ts. The .env file is ignored by git, so you won't have to worry about accidentally pushing credentials.

orgUrl is https://dev.azure.com/ + your Azure Boards organization name (ex: "jupiterone").

You can generate a personal access token at this link: {{orgUrl}}/_usersSettings/tokens

Be sure to give Read access for:

  • Work Items - Neded for azure_devops_work_item entities
  • Project and Team - Needed for azure_devops_project, azure_devops_team, and azure_devops_user

Given this example configuration:

import { IntegrationInstanceConfigFieldMap } from '@jupiterone/integration-sdk-core';

const instanceConfigFields: IntegrationInstanceConfigFieldMap = {
  orgUrl: {
    type: 'string',
    mask: false,
  },
  accessToken: {
    type: 'string',
    mask: true,
  },
};

export default instanceConfigFields;

You would provide a .env file like this:

ORG_URL="https://dev.azure.com/jupiterone"
ACCESS_TOKEN="abcdefghijklmnopqrstuvwxyz1234567890"

The snake cased environment variables will automatically be converted and applied to the camel cased configuration field. So for example, CLIENT_ID will apply to the clientId config field, CLIENT_SECRET will apply to clientSecret, and MY_SUPER_SECRET_CONFIGURATION_VALUE will apply to a mySuperSecretConfigurationValue configuration field.

Running the integration

To start collecting data, run yarn start from the root of the project. This will load in your configuration from src/index.ts.

Documentation

Development

Please reference the JupiterOne integration development documentation for more information on how to use the SDK.

See docs/development.md for details about how to get started with developing this integration.

Integration usage and resource coverage

More information about the resources covered by this integration and how to setup the integration in JupiterOne can be found in docs/jupiterone.md.

Changelog

The history of this integration's development can be viewed at CHANGELOG.md.

3.0.0

21 days ago

2.0.1

1 year ago

2.0.0

2 years ago

1.0.3

2 years ago

1.0.2

3 years ago

1.0.1

3 years ago