Merge "Remove CA API policy file"

This commit is contained in:
Zuul 2018-06-06 21:45:36 +00:00 committed by Gerrit Code Review
commit 31754b8518
2 changed files with 0 additions and 53 deletions

View File

@ -14,7 +14,6 @@ import itertools
from barbican.common.policies import acls from barbican.common.policies import acls
from barbican.common.policies import base from barbican.common.policies import base
from barbican.common.policies import cas
from barbican.common.policies import consumers from barbican.common.policies import consumers
from barbican.common.policies import containers from barbican.common.policies import containers
from barbican.common.policies import orders from barbican.common.policies import orders
@ -29,7 +28,6 @@ def list_rules():
return itertools.chain( return itertools.chain(
base.list_rules(), base.list_rules(),
acls.list_rules(), acls.list_rules(),
cas.list_rules(),
consumers.list_rules(), consumers.list_rules(),
containers.list_rules(), containers.list_rules(),
orders.list_rules(), orders.list_rules(),

View File

@ -1,51 +0,0 @@
# 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
rules = [
policy.RuleDefault('certificate_authorities:get_limited',
'rule:all_users'),
policy.RuleDefault('certificate_authorities:get_all',
'rule:admin'),
policy.RuleDefault('certificate_authorities:post',
'rule:admin'),
policy.RuleDefault('certificate_authorities:get_preferred_ca',
'rule:all_users'),
policy.RuleDefault('certificate_authorities:get_global_preferred_ca',
'rule:service_admin'),
policy.RuleDefault('certificate_authorities:unset_global_preferred',
'rule:service_admin'),
policy.RuleDefault('certificate_authority:delete',
'rule:admin'),
policy.RuleDefault('certificate_authority:get',
'rule:all_users'),
policy.RuleDefault('certificate_authority:get_cacert',
'rule:all_users'),
policy.RuleDefault('certificate_authority:get_ca_cert_chain',
'rule:all_users'),
policy.RuleDefault('certificate_authority:get_projects',
'rule:service_admin'),
policy.RuleDefault('certificate_authority:add_to_project',
'rule:admin'),
policy.RuleDefault('certificate_authority:remove_from_project',
'rule:admin'),
policy.RuleDefault('certificate_authority:set_preferred',
'rule:admin'),
policy.RuleDefault('certificate_authority:set_global_preferred',
'rule:service_admin'),
]
def list_rules():
return rules