realm wide authorization is not required any longer?

This commit is contained in:
Marco Lettere 2021-10-07 11:56:41 +02:00
parent bd23d0b65f
commit c0bd29d44b
1 changed files with 3 additions and 3 deletions

View File

@ -22,18 +22,18 @@
"taskReferenceName" : "authorize",
"type" : "SIMPLE",
"inputParameters" : {
"url" : "{{ keycloak }}/master/protocol/openid-connect/token",
"url" : "${init.input.keycloak}/protocol/openid-connect/token",
"method" : "POST",
"headers" : {
"Accept" : "application/json"
},
"body" : {
"client_id" : "orchestrator",
"client_secret" : "{{ keycloak_auth_master }}",
"client_secret" : "{{ keycloak_auth }}",
"grant_type" : "client_credentials"
}
}
},
},
{
"name" : "pyrest",
"taskReferenceName" : "create_client",