Integrations are responsible for connecting to data provider APIs to collect current state and maintain a graph database representing the entities and relationships managed by the provider.
You may use use Node to execute directly on your machine.
Prerequisites:
- Install terraform and tfenv (see Development)
- Provide credentials in
.env
(see Environment Variable)
Node:
- Install Node (Node Version Manager is recommended)
yarn install
yarn start:containers
yarn start
Activity is logged to the console indicating the operations produced and processed. View raw data in the graph database using Graphexp.
Execute the integration again to see that there are no change operations produced.
Restart the graph server to clear the data when you want to run the integration with no existing data.
yarn restart:containers
Provider API configuration is specified by users when they install the integration into their JupiterOne environment. Some integrations may also require pre-shared secrets, used across all integration installations, which is to be secured by JupiterOne and provided in the execution context.
Local execution requires the same configuration parameters for a development
provider account. tools/execute.ts
is the place to provide the parameters. The
execution script must not include any credentials, and it is important to make
it easy for other developers to execute the integration against their own
development provider account.
- Update
tools/execute.ts
to provide the properties required by theexecutionHandler
function - Create a
.env
file to provide the environment variables transferred into the properties
For example, given this execution script:
const integrationConfig = {
apiToken: process.env.MYPROVIDER_LOCAL_EXECUTION_API_TOKEN,
};
const invocationArgs = {
preSharedPrivateKey: process.env.MYPROVIDER_LOCAL_EXECUTION_PRIVATE_KEY,
};
Create a .env
file (this is .gitignore
'd):
MYPROVIDER_LOCAL_EXECUTION_API_TOKEN=abc123
MYPROVIDER_LOCAL_EXECUTION_PRIVATE_KEY='something\nreally\nlong'
Environment variables can modify some aspects of the integration SDK behavior.
These may be added to your .env
with values to overrided the defaults listed
here.
GRAPH_DB_ENDPOINT
-"localhost"
All tests must be written using Jest. Focus on testing provider API interactions and conversion from provider data to entities and relationships.
To run tests locally:
yarn test
Managed integrations are deployed into the JupiterOne infrastructure by staff engineers using internal projects that declare a dependency on the open source integration NPM package. The package will be published by the JupiterOne team.
Create a PR with changes and request review. Once approved, the branch will be
merged into main
. An administrator of the GitHub project should:
- Pull the latest from
main
- Determine the new semantic version number
- Create the version and tag with
yarn version [--major] [--minor] [--patch]
- Push the commit and tag with
git push --follow-tags
That's it! Travis will deploy the necessary bits to NPM. Manual deployment is
possible of course, just be certain to follow the yarn build
road.