Skip to content

Commit

Permalink
fix: adjust the hosting url for rc and pen (eclipse-tractusx#76)
Browse files Browse the repository at this point in the history
Reviewed-By: Evelyn Gurschler <[email protected]>
  • Loading branch information
Phil91 authored Apr 23, 2024
1 parent ba63179 commit 061272e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions consortia/environments/values-pen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ ingress:
tls:
- secretName: "tls-secret"
hosts:
- "ssi-credential-issuer-backend-pen.dev.demo.catena-x.net"
- "ssi-credential-issuer-pen.dev.demo.catena-x.net"
hosts:
- host: "ssi-credential-issuer-backend-pen.dev.demo.catena-x.net"
- host: "ssi-credential-issuer-pen.dev.demo.catena-x.net"
paths:
- path: "/api/issuer"
pathType: "Prefix"
Expand Down
4 changes: 2 additions & 2 deletions consortia/environments/values-rc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ ingress:
tls:
- secretName: "tls-secret"
hosts:
- "ssi-credential-issuer-backend-rc.dev.demo.catena-x.net"
- "ssi-credential-issuer-rc.dev.demo.catena-x.net"
hosts:
- host: "ssi-credential-issuer-backend-rc.dev.demo.catena-x.net"
- host: "ssi-credential-issuer-rc.dev.demo.catena-x.net"
paths:
- path: "/api/issuer"
pathType: "Prefix"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,7 @@ private async Task<Guid> HandleCredentialProcessCreation(
c.ClientId = technicalUserDetails.ClientId;
c.ClientSecret = secret;
c.InitializationVector = initializationVector;
c.EncryptionMode = _settings.EncrptionConfigIndex;
c.HolderWalletUrl = technicalUserDetails.WalletUrl;
c.CallbackUrl = callbackUrl;
});
Expand Down

0 comments on commit 061272e

Please sign in to comment.