Browse Source
This commit uses the existing policy-in-code module to move all default policies for certificates into code. This commit also adds helpful documentation about each API those policies protect, which will be generated in sample policy files. Co-authored-By: Dai Dang-Van <daidv@vn.fujitsu.com> Implements: blueprint policy-in-code Change-Id: I1abc75441d7984497739194a273d8bda63f832a0changes/69/509369/6
4 changed files with 62 additions and 7 deletions
@ -1,8 +1,4 @@
|
||||
{ |
||||
"certificate:rotate_ca": "rule:admin_or_owner", |
||||
"certificate:create": "rule:admin_or_user or rule:cluster_user", |
||||
"certificate:get": "rule:admin_or_user or rule:cluster_user", |
||||
|
||||
"magnum-service:get_all": "rule:admin_api", |
||||
"stats:get_all": "rule:admin_or_owner" |
||||
} |
||||
|
@ -0,0 +1,60 @@
|
||||
# All Rights Reserved. |
||||
# |
||||
# Licensed under the Apache License, Version 2.0 (the "License"); you may |
||||
# not use this file except in compliance with the License. You may obtain |
||||
# a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
# |
||||
# Unless required by applicable law or agreed to in writing, software |
||||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
||||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
||||
# License for the specific language governing permissions and limitations |
||||
# under the License. |
||||
from oslo_policy import policy |
||||
|
||||
from magnum.common.policies import base |
||||
|
||||
CERTIFICATE = 'certificate:%s' |
||||
RULE_ADMIN_OR_USER_OR_CLUSTER_USER = base.RULE_ADMIN_OR_USER + " or " + \ |
||||
base.RULE_CLUSTER_USER |
||||
|
||||
rules = [ |
||||
policy.DocumentedRuleDefault( |
||||
name=CERTIFICATE % 'create', |
||||
check_str=RULE_ADMIN_OR_USER_OR_CLUSTER_USER, |
||||
description='Sign a new certificate by the CA.', |
||||
operations=[ |
||||
{ |
||||
'path': '/v1/certificates', |
||||
'method': 'POST' |
||||
} |
||||
] |
||||
), |
||||
policy.DocumentedRuleDefault( |
||||
name=CERTIFICATE % 'get', |
||||
check_str=RULE_ADMIN_OR_USER_OR_CLUSTER_USER, |
||||
description='Retrieve CA information about the given bay/cluster.', |
||||
operations=[ |
||||
{ |
||||
'path': '/v1/certificates/{bay_uuid/cluster_uuid}', |
||||
'method': 'GET' |
||||
} |
||||
] |
||||
), |
||||
policy.DocumentedRuleDefault( |
||||
name=CERTIFICATE % 'rotate_ca', |
||||
check_str=base.RULE_ADMIN_OR_OWNER, |
||||
description='Rotate the CA certificate on the given bay/cluster.', |
||||
operations=[ |
||||
{ |
||||
'path': '/v1/certificates/{bay_uuid/cluster_uuid}', |
||||
'method': 'PATCH' |
||||
} |
||||
] |
||||
) |
||||
] |
||||
|
||||
|
||||
def list_rules(): |
||||
return rules |
Loading…
Reference in new issue