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", "taskReferenceName" : "authorize",
"type" : "SIMPLE", "type" : "SIMPLE",
"inputParameters" : { "inputParameters" : {
"url" : "{{ keycloak }}/master/protocol/openid-connect/token", "url" : "${init.input.keycloak}/protocol/openid-connect/token",
"method" : "POST", "method" : "POST",
"headers" : { "headers" : {
"Accept" : "application/json" "Accept" : "application/json"
}, },
"body" : { "body" : {
"client_id" : "orchestrator", "client_id" : "orchestrator",
"client_secret" : "{{ keycloak_auth_master }}", "client_secret" : "{{ keycloak_auth }}",
"grant_type" : "client_credentials" "grant_type" : "client_credentials"
} }
} }
}, },
{ {
"name" : "pyrest", "name" : "pyrest",
"taskReferenceName" : "create_client", "taskReferenceName" : "create_client",