From 52bdcb790695c12b713a3394a2e132e6e924a3c8 Mon Sep 17 00:00:00 2001 From: The Magician Date: Tue, 23 Jul 2019 09:12:35 -0700 Subject: [PATCH] Add additional import formats, extend identity logic (#311) Signed-off-by: Modular Magician --- plugins/modules/gcp_sql_user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/gcp_sql_user.py b/plugins/modules/gcp_sql_user.py index 64dca81..50d4a53 100644 --- a/plugins/modules/gcp_sql_user.py +++ b/plugins/modules/gcp_sql_user.py @@ -215,7 +215,7 @@ def resource_to_request(module): def unwrap_resource_filter(module): - return {'host': module.params['host'], 'name': module.params['name']} + return {'name': module.params['name'], 'host': module.params['host']} def unwrap_resource(result, module):