Merge "Fix Floating IP policy rules" into stable/wallaby

This commit is contained in:
Zuul 2021-04-03 20:38:16 +00:00 committed by Gerrit Code Review
commit 995b88fce1
1 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ DEPRECATION_REASON = (
rules = [ rules = [
policy.DocumentedRuleDefault( policy.DocumentedRuleDefault(
name='create_floatingip', name='create_floatingip',
check_str=base.PROJECT_MEMBER, check_str=base.SYSTEM_ADMIN_OR_PROJECT_MEMBER,
description='Create a floating IP', description='Create a floating IP',
operations=[ operations=[
{ {
@ -90,7 +90,7 @@ rules = [
], ],
scope_types=['system', 'project'], scope_types=['system', 'project'],
deprecated_rule=policy.DeprecatedRule( deprecated_rule=policy.DeprecatedRule(
name='create_floatingip', name='update_floatingip',
check_str=base.RULE_ADMIN_OR_OWNER, check_str=base.RULE_ADMIN_OR_OWNER,
deprecated_reason=DEPRECATION_REASON, deprecated_reason=DEPRECATION_REASON,
deprecated_since=versionutils.deprecated.WALLABY) deprecated_since=versionutils.deprecated.WALLABY)
@ -107,7 +107,7 @@ rules = [
], ],
scope_types=['system', 'project'], scope_types=['system', 'project'],
deprecated_rule=policy.DeprecatedRule( deprecated_rule=policy.DeprecatedRule(
name='create_floatingip', name='delete_floatingip',
check_str=base.RULE_ADMIN_OR_OWNER, check_str=base.RULE_ADMIN_OR_OWNER,
deprecated_reason=DEPRECATION_REASON, deprecated_reason=DEPRECATION_REASON,
deprecated_since=versionutils.deprecated.WALLABY) deprecated_since=versionutils.deprecated.WALLABY)