Skip to content

Commit

Permalink
Add daps support into in-memory controlplane (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
florianrusch-zf authored May 17, 2022
2 parents a332dc7 + 7fda0bf commit 6b6e83e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
13 changes: 13 additions & 0 deletions edc-controlplane/edc-controlplane-memory/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ Details regarding each configuration property can be found at the [documentary s
| edc.api.control.auth.apikey.key | | X-Api-Key | |
| edc.api.control.auth.apikey.value | | super-strong-api-key | |
| edc.hostname | | localhost | |
| edc.oauth.token.url | X | https://daps.catena-x.net | |
| edc.oauth.public.key.alias | X | key-to-daps-certificate-in-keyvault | |
| edc.oauth.private.key.alias | X | key-to-private-key-in-keyvault | |
| edc.oauth.client.id | X | daps-oauth-client-id | |
| edc.vault.clientid | X | 00000000-1111-2222-3333-444444444444 | |
| edc.vault.tenantid | X | 55555555-6666-7777-8888-999999999999 | |
| edc.vault.name | X | my-vault-name | |
| edc.vault.clientsecret | X | 34-chars-secret | |
| edc.transfer.proxy.endpoint | X | | |
| edc.transfer.proxy.token.signer.privatekey.alias | X | | |

Expand Down Expand Up @@ -76,6 +84,11 @@ edc.api.control.auth.apikey.value=pass
edc.hostname=localhost
# OAuth / DAPS related configuration
edc.oauth.token.url=https://daps.catena-x.net
edc.oauth.public.key.alias=key-to-daps-certificate-in-keyvault
edc.oauth.private.key.alias=key-to-private-key-in-keyvault
edc.oauth.client.id=daps-oauth-client-id
# Azure vault related configuration
edc.vault.clientid=00000000-1111-2222-3333-444444444444
Expand Down
6 changes: 5 additions & 1 deletion edc-controlplane/edc-controlplane-memory/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,11 @@
<!-- IAM -->
<dependency>
<groupId>org.eclipse.dataspaceconnector</groupId>
<artifactId>iam-mock</artifactId>
<artifactId>oauth2-core</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.dataspaceconnector</groupId>
<artifactId>iam-daps</artifactId>
</dependency>

<!-- Telemetry -->
Expand Down

0 comments on commit 6b6e83e

Please sign in to comment.