Updated network module docs

The network module does support updates since Will's patch [1].

[1] https://review.opendev.org/c/openstack/ansible-collections-openstack/+/854170

Story: 2010024
Task: 45262
Change-Id: I9e4af2c6e685686e28e7f2ae56a615529a6d7b59
This commit is contained in:
Jakob Meng 2022-09-21 10:37:48 +02:00 committed by Rafael Castillo
parent 8a80113d54
commit 9f3f0837c8
1 changed files with 5 additions and 3 deletions

View File

@ -11,7 +11,7 @@ module: network
short_description: Creates/removes networks from OpenStack
author: OpenStack Ansible SIG
description:
- Add or remove network from OpenStack (doesn't update network properties).
- Add, update or remove network from OpenStack.
options:
name:
description:
@ -225,7 +225,8 @@ class NetworkModule(OpenStackModule):
kwargs[arg] = self.params[arg]
if project is not None:
proj = self.conn.identity.find_project(project, ignore_missing=False)
proj = self.conn.identity.find_project(project,
ignore_missing=False)
project_id = proj['id']
net_kwargs = {'project_id': project_id}
else:
@ -255,7 +256,8 @@ class NetworkModule(OpenStackModule):
changed = False
update_kwargs = {}
# Check we are not trying to update an properties that cannot be modified
# Check we are not trying to update an properties that cannot
# be modified
non_updatables = [
"provider_network_type",
"provider_physical_network",