Author:
Fluent Commerce
Changed on:
13 Dec 2023
SCIM Connector Project Configuration
The project's resource folder contains all build time configurations for the SCIM connector.
It is possible to have dedicated configuration files for each environment. This is often used to override a common setting for a particular environment. To create such a file, follow SpringBoot's format having the additional desired spring profile name at the end of the application.yml file, for example, application-dev.yml
Property | Description |
connector-name | This is the name of the connector and this property is used to both name the connector as well as build the path of other configuration keys. Keep characters limited to 'a-z' and '-'. |
fluent-account | Account name of Fluent system (e.g, CNCTSSO) |
cache | Cache configuration |
user-update.renderFluentRoles | Enable when a SCIM client implements role handling according to SCIM RFC-7644 Spec (with add, replace, remove roles patch operations) |
enable-listeners | Enable/disable listeners feature of Connect SDK |
credential.credential-manager | Sets the credential manager. When using AWS, keep the value as "
|
security | The configuration of security layer for SCIM endpoints |
1fluent-connect:
2 connector-name: "scim-connector"
3
4 fluent-account: "CNCTSSO"
5
6 cache:
7 caffeine:
8 - name: location
9 expiry-in-seconds: 300
10 max-size: 10000
11 - name: retailer
12 expiry-in-seconds: 300
13 max-size: 10000
14
15 user-update:
16# enable when a scim-connector client implements role handling according to SCIM RFC-7644 Spec (with add,replace,remove roles patch ops)
17 renderFluentRoles: false
18
19 enable-listeners: false
20
21 credential:
22 credential-manager: "aws-secrets-manager"
23
24 security:
25 web:
26 publicEndpoints:
27 - "/actuator/**"
28 - "/api/docs"
29 - "/swagger-ui.html"
30 customAuthFilters:
31 - "com.fluentcommerce.connect.core.web.security.filters.ScimApiKeyAuthenticationFilter"
32
Language: json
Name: Example
Description:
[Warning: empty required content area]Configuration for the cache is mentioned here
By default, the SCIM Connector requires two cache keys:
`Location`
`Retailer`
Configuration for security is mentioned here.
Proper security configuration for the Authentication Filter is essential to establish a secure connection between SCIM and its client.
1 security:
2 web:
3 publicEndpoints:
4 - "/actuator/**"
5 - "/api/docs"
6 - "/swagger-ui.html"
7 customAuthFilters:
8 - "com.fluentcommerce.connect.core.web.security.filters.ScimApiKeyAuthenticationFilter"
Language: yaml
Name: Authentication Filter
Description:
[Warning: empty required content area]`publicEndpoints`
Although these endpoints are designated as public, all requests made through them will still pass through the Authentication Filter Chain. This means that even if custom authentication filters are specified, and an attempt is made to add authentication to the header, the filter will still verify it.
`customAuthFilters`
`connect-sdk-web-security`
`ScimApiKeyAuthenticationFilter`
Copyright © 2024 Fluent Retail Pty Ltd (trading as Fluent Commerce). All rights reserved. No materials on this docs.fluentcommerce.com site may be used in any way and/or for any purpose without prior written authorisation from Fluent Commerce. Current customers and partners shall use these materials strictly in accordance with the terms and conditions of their written agreements with Fluent Commerce or its affiliates.