Register Connectors
In order to start using the platform with any specific technology, we must register the Connector.
We need two Connectors:
- for basic
Credentialwe use theCommon Credential ProviderimplementingCredential Providerfunction group - for CA
MS ADCSwe use theMS ADCS ConnectorimplementingAuthority Providerfunction group
Register Connectors using the API
The Connectors can be registered using the Connector API.
Register Common Credential Provider
curl -X POST \
--cacert [ca-cert] \
--cert [client-cert] \
--cert-type [type] \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
--data '
{
"name": "Common Credential Provider",
"url", "https://common-credential-provider-service:8080"",
"authType": "none"
}' \
https://[domain]:[port]/api/v1/connectors
When there is no error, Connector is successfully registered, and its uuid is sent back:
{
"uuid": "93f74f2d-1bc7-4c15-a33e-0bf773b3955a"
}
Register MS ADCS Connector
curl -X POST \
--cacert [ca-cert] \
--cert [client-cert] \
--cert-type [type] \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
--data '
{
"name": "MS ADCS Connector",
"url", "https://ms-adcs-conector-service:8080"",
"authType": "none"
}' \
https://[domain]:[port]/api/v1/connectors
When there is no error, Connector is successfully registered, and its uuid is sent back:
{
"uuid": "04cb011f-4497-4e45-b4b9-4975db9df0a0"
}
Register Connectors using the Web Interface
Register Common Credential Provider
Follow these steps to register new Common Credential Provider.
- Log in to the Administration Interface
https://[domain]:[port]/administrator - Click Connectors in the left menu
- Click Add new connector (plus symbol )
- Fill the columns with the attributes:
- URL:
https://common-credential-provider-service:8080 - Authentication Type:
No Auth
- URL:
- Click Connect
Now you can see the details of the connected Connector.
- Fill in the
Connectorname:Common Credential Provider - Click Create to make the
Connectoravailable to other components
You have registered Common Credential Provider.
Register MS ADCS Connector
Follow these steps to register new MS ADCS Connector.
- Log in to the Administration Interface
https://[domain]:[port]/administrator - Click Connectors in the left menu
- Click Add new connector (plus symbol )
- Fill the columns with the attributes:
- URL:
https://ms-adcs-connector-service:8080 - Authentication Type:
No Auth
- URL:
- Click Connect
Now you can see the details of the connected Connector.
- Fill in the
Connectorname:MS ADCS Connector - Click Create to make the
Connectoravailable to other components
You have registered MS ADCS Connector.