From d8a71ecf26fe82f6971052a86c47e58a0d3d51ff Mon Sep 17 00:00:00 2001 From: fujioka yuuichi Date: Fri, 31 Jan 2014 10:54:34 +0900 Subject: [PATCH] Allow to specify IP address of floating ip IP address of floating ip will be automatically allocated. There are cases where users need to specify a floating IP address. This patch addresses the problem. The feature is limited by "create_floatingip:floating_ip_address" in "policy.json". By default, it needs an admin role. DocImpact APIImpact Implements: blueprint allow-specific-floating-ip-address Change-Id: Iba64a0f0a38ca5eb39c605e121a12c956637b96c --- etc/policy.json | 1 + 1 file changed, 1 insertion(+) diff --git a/etc/policy.json b/etc/policy.json index 1664c8d7..f8414e14 100644 --- a/etc/policy.json +++ b/etc/policy.json @@ -112,6 +112,7 @@ "get_loadbalancer-pools": "rule:admin_only", "create_floatingip": "rule:regular_user", + "create_floatingip:floating_ip_address": "rule:admin_only", "update_floatingip": "rule:admin_or_owner", "delete_floatingip": "rule:admin_or_owner", "get_floatingip": "rule:admin_or_owner",