From b91f129d87deb06720e95e954fa9e98bd5c181ef Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Sun, 3 Aug 2014 10:43:39 -0700 Subject: [PATCH] Pass region_name to nova_keypair Again, on things with regions, when we're configuring it, we should actually pass it in to the compute constructor. --- cloud/nova_keypair | 1 + 1 file changed, 1 insertion(+) diff --git a/cloud/nova_keypair b/cloud/nova_keypair index 553683d3a89..64539b6a00f 100644 --- a/cloud/nova_keypair +++ b/cloud/nova_keypair @@ -104,6 +104,7 @@ def main(): module.params['login_password'], module.params['login_tenant_name'], module.params['auth_url'], + region_name=module.params['region_name'], service_type='compute') try: nova.authenticate()