Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔧 Update OIDC issuer in QA #182

Merged
merged 1 commit into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,13 @@ credentials and then use these to get the access token from Keycloak:
```shell
client_id: myclient
client_secret: mysecret
token_url: https://kf-keycloak-qa.kf-strides.org/auth/realms/FHIR-TEST/protocol/openid-connect/token
token_url: https://keycloak-qa.kf-strides.org/realms/FHIR-TEST/protocol/openid-connect/token
```

```shell
curl -X POST -d "client_id=myclient&client_secret=mysecret&grant_type=client_credentials" \
-H "Content-Type: application/x-www-form-urlencoded" \
https://kf-keycloak-qa.kf-strides.org/auth/realms/FHIR-TEST/protocol/openid-connect/token
https://keycloak-qa.kf-strides.org/realms/FHIR-TEST/protocol/openid-connect/token
```

You will get something that looks like this:
Expand Down
6 changes: 3 additions & 3 deletions smilecdr/settings/oidc-servers.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
{
"nodeId": "Master",
"moduleId": "security_in_smart",
"issuer": "https://kf-keycloak-qa.kf-strides.org/auth/realms/FHIR-TEST",
"name": "Keycloak QA Strides Server",
"issuer": "https://keycloak-qa.kf-strides.org/realms/FHIR-TEST",
"name": "Keycloak QA Server",
"federationAuthScriptText": "",
"federationAuthorizationUrl": "",
"federationJwkSetUrl": "",
Expand All @@ -22,7 +22,7 @@
"nodeId": "Master",
"moduleId": "security_in_smart",
"issuer": "https://kf-keycloak.kf-strides.org/auth/realms/fhir",
"name": "Keycloak PRD Strides Server",
"name": "Keycloak PRD Server",
"federationAuthScriptText": "",
"federationAuthorizationUrl": "",
"federationJwkSetUrl": "",
Expand Down