diff --git a/lib/ansible/modules/cloud/openstack/os_network.py b/lib/ansible/modules/cloud/openstack/os_network.py index d80267e8937..5220dba5eba 100644 --- a/lib/ansible/modules/cloud/openstack/os_network.py +++ b/lib/ansible/modules/cloud/openstack/os_network.py @@ -69,7 +69,7 @@ options: provider_network_type: description: - The type of physical network that maps to this network resource. - choices: ['flat', 'vlan', 'vxlan', 'gre'] + choices: ['flat', 'vlan', 'vxlan', 'gre', 'uplink'] required: false default: None version_added: "2.1" @@ -169,7 +169,7 @@ def main(): external=dict(default=False, type='bool'), provider_physical_network=dict(required=False), provider_network_type=dict(required=False, default=None, - choices=['flat', 'vlan', 'vxlan', 'gre']), + choices=['flat', 'vlan', 'vxlan', 'gre', 'uplink']), provider_segmentation_id=dict(required=False), state=dict(default='present', choices=['absent', 'present']), project=dict(default=None)