Use this category to view and download Identity Security Cloud (ISC) transforms built by the community.
Please remember that you must update all inputs in the transform to match the inputs in your Identity Security Cloud environment, before uploading to your environment. If you are unfamiliar with transforms at this stage, please read the transforms documentation before using any CoLab items.
Follow these steps to download and use a transform from the CoLab:
-
Download the transform you want from the Transforms category.
-
Open the transform in your preferred code editor (we recommend Visual Studio Code if you do not have one).
-
Identify all inputs in the transform that you will need to update to reflect your environment. Carefully replace each input with your account attributes, and save the file.
-
Before uploading to your tenant, preview your modified transform by following this guide:
https://developer.sailpoint.com/discuss/t/build-and-test-transforms-locally/11227 -
Once you are sure the transform will have the output you intend, upload your transform into IDN for use.
https://developer.sailpoint.com/idn/docs/transforms/guides/your-first-transform#create-a-transform
Example
Assume you downloaded the following transform, which uses a source name of CSV Source
and attribute name of first_name
to pull the first name from the source.
{
"type": "accountAttribute",
"attributes": {
"attributeName": "first_name",
"sourceName": "CSV Source"
}
}
Assuming, in your environment, the source name is Active Directory
and the attribute name is FirstName
.
-
Update
attributeName
fromfirst_name
toFirstName
. -
Update
sourceName
fromCSV Source
toActive Directory
.
The result:
{
"type": "accountAttribute",
"attributes": {
"attributeName": "FirstName",
"sourceName": "Active Directory"
}
}