From cde551392384648bdc0416b87037c7c9fbc628d1 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. --- library/cloud/nova_keypair | 1 + 1 file changed, 1 insertion(+) diff --git a/library/cloud/nova_keypair b/library/cloud/nova_keypair index 553683d3a89..64539b6a00f 100644 --- a/library/cloud/nova_keypair +++ b/library/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()