Skip to main content

Building and uploading to Identity Security Cloud

Initial requirements

Before you can upload a connector customizer, you must issue the create command to create an empty connector customizer:

sail conn customizers create my-connector-customizer

This will return the customizer ID.

+--------------------------------------+-------------------------+---------+
| ID | NAME | VERSION |
+--------------------------------------+-------------------------+---------+
| 7b968fab-0f40-49f0-b13b-8bf529fc0b82 | my-connector-customizer | |
+--------------------------------------+-------------------------+---------+

Build the customizer

Building a connector customizer is similar to building a SaaS Connector. Execute this command:

npm run pack-zip

After the build is complete, you will see a message like this:

> [email protected] pack-zip
> spcx package

Connector zip file created under dist folder: my-connector-customizer-0.1.0.zip

Upload to Identity Security Cloud

To upload the customizer to Identity Security Cloud, use the upload command:

sail conn customizers upload -c 7b968fab-0f40-49f0-b13b-8bf529fc0b82 -f .\dist\my-connector-customizer-0.1.0.zip

Now the customizer is ready to be used!