36 lines
No EOL
1 KiB
JSON
36 lines
No EOL
1 KiB
JSON
{
|
|
"allowRemoteResourceManagement": false,
|
|
"policyEnforcementMode": "ENFORCING",
|
|
"resources": [
|
|
{
|
|
"name": "Default Resource",
|
|
"uri": "/*",
|
|
"type": "urn:hello-world-authz-service:resources:default"
|
|
}
|
|
],
|
|
"policies": [
|
|
{
|
|
"name": "Default Policy",
|
|
"description": "A policy that grants access only for users within this realm",
|
|
"type": "js",
|
|
"logic": "POSITIVE",
|
|
"decisionStrategy": "AFFIRMATIVE",
|
|
"config": {
|
|
"applyPolicies": "[]",
|
|
"code": "// by default, grants any permission associated with this policy\n$evaluation.grant();\n"
|
|
}
|
|
},
|
|
{
|
|
"name": "Default Permission",
|
|
"description": "A permission that applies to the default resource type",
|
|
"type": "resource",
|
|
"logic": "POSITIVE",
|
|
"decisionStrategy": "UNANIMOUS",
|
|
"config": {
|
|
"defaultResourceType": "urn:hello-world-authz-service:resources:default",
|
|
"default": "true",
|
|
"applyPolicies": "[\"Default Policy\"]"
|
|
}
|
|
}
|
|
]
|
|
} |