[Demo] ConductorOne's Policy Engine

ConductorOne docs

Set up a SAP SuccessFactors connector

ConductorOne provides identity governance and just-in-time provisioning for SAP SuccessFactors. Integrate your SuccessFactors instance with ConductorOne to run user access reviews (UARs) and enable just-in-time access requests.

Capabilities

ResourceSyncProvision
Accounts

Available hosting methods

Choose the hosting method that best suits your needs:

MethodAvailabilityNotes
Cloud-hostedA built-in, no-code connector hosted by ConductorOne.
Self-hostedThe SuccessFactors connector, hosted and run in your own environment.

Gather SuccessFactors credentials

Each setup method requires you to pass in credentials generated in SuccessFactors. Gather these credentials before you move on.

An administrator with the Manage OAuth2 Client Applications permission in SuccessFactors must perform this task.

Look up your company ID

  1. Navigate to your profile menu and select Show version information.

  2. Carefully copy and save the Company ID.

Look up your instance URL

  1. Refer to the SAP SuccessFactors documentation and look up your API server.

  2. Carefully copy and save the API server URL.

Register an OAuth2 client application and generate an API key

  1. In SuccessFactors, navigate to Admin Tools > Manage OAuth2 Client Applications and click Register Client Application.

  2. Fill out the form, providing:

    • Application name, such as “Baton Connector”.

    • Application URL, such as https://www.conductorone.com/. Carefully copy and save this URL, it will be used later as the Issuer URL when setting up the connector.

    • X.509 Certificate. You can choose to generate a new certificate on the platform or locally. If you are uploading a self-generated certificate, remove the lines -----BEGIN CERTIFICATE----- and -----END CERTIFICATE-----.

    Refer to the SuccessFactors documentation on registering an OAuth2 client application for more information.

  3. Click Register.

  4. Click Edit in the list of registered applications to view the new application’s API key.

  5. Carefully copy and save the API key. When setting up the connector, you’ll use this API key as both the Client ID and the SAML API key.

You’ll also need the User ID of the admin user who will be added to the SAML subject.

That’s it! Next, move on to the instructions for your chosen setup method.

Set up a SuccessFactors cloud-hosted connector

To complete this task, you’ll need:

  • The Connector Administrator or Super Administrator role in ConductorOne
  • Access to the set of SuccessFactors credentials generated by following the instructions above
  1. In ConductorOne, navigate to Admin > Connectors and click Add connector.

  2. Search for SuccessFactors and click Add.

    Don’t see the SuccessFactors connector? Reach out to support@conductorone.com to add SuccessFactors to your Connectors page.

  1. Choose how to set up the new SuccessFactors connector:

    • Add the connector to a currently unmanaged app (select from the list of apps that were discovered in your identity, SSO, or federation provider that aren’t yet managed with ConductorOne)

    • Add the connector to a managed app (select from the list of existing managed apps)

    • Create a new managed app

  2. Set the owner for this connector. You can manage the connector yourself, or choose someone else from the list of ConductorOne users. Setting multiple owners is allowed.

    If you choose someone else, ConductorOne will notify the new connector owner by email that their help is needed to complete the setup process.

  3. Click Next.

  4. Find the Settings area of the page and click Edit.

  5. In the Company ID field, enter your SuccessFactors company ID.

  6. In the Client ID field, enter the API key.

  7. In the Public key and Private key fields, enter these credentials.

  8. In the Instance URL field, enter your API server URL.

  9. In the Issuer URL field, enter the application URL used to set up the OAuth2 application.

  10. In the Subject name ID field, enter the user ID of the admin user that will be added to the SAML subject.

  11. In the SAML API key field, enter the API key a second time.

  12. Click Save.

  13. The connector’s label changes to Syncing, followed by Connected. You can view the logs to ensure that information is syncing.

That’s it! Your SuccessFactors connector is now pulling access data into ConductorOne.

Set up a SuccessFactors self-hosted connector

To complete this task, you’ll need:

  • The Connector Administrator or Super Administrator role in ConductorOne
  • Access to the set of SuccessFactors credentials generated by following the instructions above

When running in service mode on Kubernetes, a self-hosted connector maintains an ongoing connection with ConductorOne, automatically syncing and uploading data at regular intervals. This data is immediately available in the ConductorOne UI for access reviews and access requests.

Why use Kubernetes? Kubernetes provides automated deployment, scaling, and management of your connectors. It ensures high availability and reliable operation of your connector services.

Step 1: Configure the SuccessFactors connector

  1. In ConductorOne, navigate to Connectors > Add connector.

  2. Search for Baton and click Add.

  3. Choose how to set up the new SuccessFactors connector:

    • Add the connector to a currently unmanaged app (select from the list of apps that were discovered in your identity, SSO, or federation provider that aren’t yet managed with ConductorOne)

    • Add the connector to a managed app (select from the list of existing managed apps)

    • Create a new managed app

  4. Set the owner for this connector. You can manage the connector yourself, or choose someone else from the list of ConductorOne users. Setting multiple owners is allowed.

    If you choose someone else, ConductorOne will notify the new connector owner by email that their help is needed to complete the setup process.

  5. Click Next.

  6. In the Settings area of the page, click Edit.

  7. Click Rotate to generate a new Client ID and Secret.

    Carefully copy and save these credentials. We’ll use them in Step 2.

Step 2: Create Kubernetes configuration files

Create two Kubernetes manifest files for your SuccessFactors connector deployment:

Secrets configuration

# baton-successfactors-secrets.yaml
apiVersion: v1
kind: Secret
metadata:
  name: baton-successfactors-secrets
type: Opaque
stringData:
  # ConductorOne credentials
  BATON_CLIENT_ID: <ConductorOne client ID>
  BATON_CLIENT_SECRET: <ConductorOne client secret>
  
  # SuccessFactors credentials
  BATON_CID: <SuccessFactors client ID (use the SAML API key for this value)> 
  BATON_COMPANY_ID: <SuccessFactors company ID> 
  BATON_SUBJECT_NAME_ID: <SuccessFactors subject name ID>
  BATON_PRIVATE_KEY: <SuccessFactors private key>
  BATON_PUBLIC_KEY: <SuccessFactors public key>
  BATON_SAML_API_KEY: <SuccessFactors SAML API key> 
  BATON_INSTANCE_URL: <SuccessFactors domain, such as https://successfactorsserver.com>
  BATON_ISSUER_URL: <SuccessFactors SAML Issuer URL, such as https://www.conductorone.com/> 

See the connector’s README or run --help to see all available configuration flags and environment variables.

Deployment configuration

# baton-successfactors.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
  name: baton-successfactors
  labels:
    app: baton-successfactors
spec:
  selector:
    matchLabels:
      app: baton-successfactors
  template:
    metadata:
      labels:
        app: baton-successfactors
        baton: true
        baton-app: successfactors
    spec:
      containers:
      - name: baton-successfactors
        image: ghcr.io/conductorone/baton-successfactors:latest
        imagePullPolicy: IfNotPresent
        envFrom:
        - secretRef:
            name: baton-successfactors-secrets

Step 3: Deploy the connector

  1. Create a namespace in which to run ConductorOne connectors (if desired):

    kubectl create namespace conductorone
    
  2. Apply the secret configuration:

    kubectl -n conductorone apply -f baton-successfactors-secrets.yaml
    
  3. Apply the deployment:

    kubectl -n conductorone apply -f baton-successfactors.yaml
    

Step 4: Verify the deployment

  1. Check that the deployment is running:

    kubectl -n conductorone get pods
    
  2. View the connector logs:

    kubectl -n conductorone logs -l app=baton-${baton-successfactors}
    
  3. Check that the connector data uploaded correctly. In ConductorOne, click Applications. On the Managed apps tab, locate and click the name of the application you added the SuccessFactors connector to. SuccessFactors data should be found on the Entitlements and Accounts tabs.

That’s it! Your SuccessFactors connector is now pulling access data into ConductorOne.