From 66c83fc788c58996a005161e4064507be4c3e206 Mon Sep 17 00:00:00 2001 From: David Shrewsbury Date: Mon, 1 Feb 2016 16:48:55 -0500 Subject: [PATCH] Fix for os_server module when specifying region Fix the OpenStack os_server module for when region_name is specified. This should not be passed through to the shade create_server() call as it's only used with the auth parameters. Fixes bug: https://github.com/ansible/ansible-modules-core/issues/2797 --- lib/ansible/modules/cloud/openstack/os_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/openstack/os_server.py b/lib/ansible/modules/cloud/openstack/os_server.py index a8c7f67c329..eefdeb5d809 100644 --- a/lib/ansible/modules/cloud/openstack/os_server.py +++ b/lib/ansible/modules/cloud/openstack/os_server.py @@ -450,7 +450,7 @@ def _create_server(module, cloud): config_drive=module.params['config_drive'], ) for optional_param in ( - 'region_name', 'key_name', 'availability_zone', 'network', + 'key_name', 'availability_zone', 'network', 'volume_size', 'volumes'): if module.params[optional_param]: bootkwargs[optional_param] = module.params[optional_param]