Merge "Fix Firewall policy resource"

This commit is contained in:
Zuul 2019-12-05 07:18:47 +00:00 committed by Gerrit Code Review
commit 02e9fb9580
2 changed files with 7 additions and 2 deletions

View File

@ -243,8 +243,8 @@ class FirewallPolicy(neutron.NeutronResource):
),
FIREWALL_RULES: properties.Schema(
properties.Schema.LIST,
_('An ordered list of firewall rules to apply to the firewall.'),
required=True,
_('An ordered list of firewall rules to apply to the firewall. '
'(Prior to version 14.0.0 this was a required property).'),
update_allowed=True
),
}

View File

@ -0,0 +1,5 @@
---
fixes:
- |
The `firewall_rules` property of the `OS::Neutron::FirewallPolicy`
resource type is now optional.