ansible-role-conductor-work.../templates/add_role_policy_permission....

153 lines
5.2 KiB
Plaintext
Raw Normal View History

2021-03-24 12:03:39 +01:00
{
"ownerApp" : "Orchestrator",
"name" : "add_role_policy_permission",
"createBy" : "Marco Lettere",
"description": "Atomically add a policy and a update client permission with new role",
"version" : 1,
"ownerEmail" : "marco.lettere@nubisware.com",
"inputParameters" : ["role"],
"tasks" : [
{
"name": "INLINE_TASK",
2021-03-24 12:03:39 +01:00
"taskReferenceName": "init",
"type": "INLINE",
2021-03-24 12:03:39 +01:00
"inputParameters": {
"keycloak": "{{ keycloak }}/{{ keycloak_realm }}",
"keycloak_admin" : "{{ keycloak_admin }}/{{ keycloak_realm }}",
"evaluatorType" : "javascript",
2023-10-12 18:00:15 +02:00
"expression": "1 == 1"
2021-03-24 12:03:39 +01:00
}
},
{
"name" : "pyrest",
"taskReferenceName" : "authorize",
"type" : "SIMPLE",
"inputParameters" : {
"url" : "{{ keycloak }}/master/protocol/openid-connect/token",
"method" : "POST",
"headers" : {
"Accept" : "application/json"
},
"body" : {
"client_id" : "orchestrator",
"client_secret" : "{{ keycloak_auth_master }}",
"grant_type" : "client_credentials"
}
}
},
{
"name" : "fork_join",
"taskReferenceName" : "prepare_policy_and_permission",
"type" : "FORK_JOIN",
"forkTasks" : [
[
{
"name" : "pyrest",
"type" : "SIMPLE",
"taskReferenceName": "add_policy",
2023-10-18 14:18:27 +02:00
"retryCount" : 1,
2021-03-24 12:03:39 +01:00
"inputParameters" : {
"url" : "${init.input.keycloak_admin}/clients/${workflow.input.role.containerId}/authz/resource-server/policy/role",
"method" :"POST",
"headers" : {
"Authorization" : "Bearer ${authorize.output.body.access_token}",
"Content-Type" : "application/json",
"Accept" : "application/json"
},
"body" : {
"name":"${workflow.input.role.name}_policy",
"description" : "Policy for having ${workflow.input.role.name} role",
"type":"role",
"logic" : "POSITIVE",
"decisionStrategy" : "UNANIMOUS",
2021-03-24 12:06:00 +01:00
"roles" : [{ "id" : "${workflow.input.role.id}", "required" : true}]
2021-03-24 12:03:39 +01:00
}
}
2021-03-24 13:26:59 +01:00
}
2021-03-24 12:03:39 +01:00
],
[
{
"name" : "pyrest",
"type" : "SIMPLE",
"taskReferenceName": "retrieve_default_permission",
2023-10-18 14:18:27 +02:00
"retryCount" : 1,
2021-03-24 12:03:39 +01:00
"inputParameters" : {
"url" : "${init.input.keycloak_admin}/clients/${workflow.input.role.containerId}/authz/resource-server/permission?name=Default Permission",
"method" :"GET",
"headers" : {
"Authorization" : "Bearer ${authorize.output.body.access_token}",
"Accept" : "application/json"
}
}
},
{
"name" : "pyrest",
"type" : "SIMPLE",
"taskReferenceName": "retrieve_default_permission_policies",
"inputParameters" : {
2021-03-24 12:39:56 +01:00
"url" : "${init.input.keycloak_admin}/clients/${workflow.input.role.containerId}/authz/resource-server/permission/${retrieve_default_permission.output.body[0].id}/associatedPolicies",
2021-03-24 12:03:39 +01:00
"method" :"GET",
"headers" : {
"Authorization" : "Bearer ${authorize.output.body.access_token}",
"Accept" : "application/json"
}
}
}
]
]
},
{
"name" : "join",
"type" : "JOIN",
2021-03-24 12:34:52 +01:00
"taskReferenceName" : "join_prepare_policy_and_permission",
2021-03-24 13:26:59 +01:00
"joinOn" : ["retrieve_default_permission_policies","add_policy"]
},
{
"name": "INLINE_TASK",
2021-03-24 13:26:59 +01:00
"taskReferenceName": "to_policy_array",
"type": "INLINE",
2021-03-24 13:26:59 +01:00
"inputParameters": {
"newpolicy": "${add_policy.output.body}",
"evaluatorType" : "javascript",
2021-03-24 13:28:24 +01:00
"prevpolicies" : "${retrieve_default_permission_policies.output.body}",
2023-10-18 14:18:27 +02:00
"expression": "Java.from($.prevpolicies).concat($.newpolicy)"
2021-03-24 13:26:59 +01:00
}
2021-03-24 12:34:52 +01:00
},
{
"name": "INLINE_TASK",
"taskReferenceName": "count_check",
"inputParameters": {
"tocount": "${to_policy_array.output.result[*].id}",
"tocompare": "${retrieve_default_permission_policies.output.body}",
"evaluatorType": "javascript",
"expression": "if($.tocount.length < $.tocompare.length) throw 'Unexpected low value'; else $.tocount.length < $.tocompare.length"
},
"type": "INLINE",
"startDelay": 0,
"optional": false,
"asyncComplete": false
},
2021-03-24 12:34:52 +01:00
{
"name" : "pyrest",
"taskReferenceName" : "finalize_permission",
"type" : "SIMPLE",
"inputParameters" : {
2021-03-24 13:04:00 +01:00
"url" : "${init.input.keycloak_admin}/clients/${workflow.input.role.containerId}/authz/resource-server/permission/${retrieve_default_permission.output.body[0].id}",
2021-03-24 12:34:52 +01:00
"method" : "PUT",
"headers" : {
"Authorization" : "Bearer ${authorize.output.body.access_token}",
"Content-Type" : "application/json"
},
"body" : {
"name": "Default Permission",
"description": "",
"type" : "resource",
"logic": "POSITIVE",
"decisionStrategy": "AFFIRMATIVE",
2021-03-24 13:38:48 +01:00
"policies" : "${to_policy_array.output.result[*].id}"
2021-03-24 12:34:52 +01:00
}
}
}
2021-03-24 12:03:39 +01:00
]
}