mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 21:00:22 -07:00
provider_segmentation_id is int (#51600)
According to the OpenStack Networking API the attribute provider:segmentation_id of a network has to be an integer. Even if neutron accepts provider:segmentation_id to be a string, other implementations may not.
This commit is contained in:
parent
c254b93796
commit
4df55bea2f
2 changed files with 6 additions and 1 deletions
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
bugfixes:
|
||||||
|
- os_network - According to the OpenStack Networking API the attribute
|
||||||
|
provider:segmentation_id of a network has to be an integer.
|
||||||
|
(https://github.com/ansible/ansible/issues/51655)
|
|
@ -161,7 +161,7 @@ def main():
|
||||||
external=dict(default=False, type='bool'),
|
external=dict(default=False, type='bool'),
|
||||||
provider_physical_network=dict(required=False),
|
provider_physical_network=dict(required=False),
|
||||||
provider_network_type=dict(required=False),
|
provider_network_type=dict(required=False),
|
||||||
provider_segmentation_id=dict(required=False),
|
provider_segmentation_id=dict(required=False, type='int'),
|
||||||
state=dict(default='present', choices=['absent', 'present']),
|
state=dict(default='present', choices=['absent', 'present']),
|
||||||
project=dict(default=None),
|
project=dict(default=None),
|
||||||
port_security_enabled=dict(default=False, type='bool')
|
port_security_enabled=dict(default=False, type='bool')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue