mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
fix: use default service account if unset (#572)
`service_account_email` defaults to None if one is not set. For gcp_compute_instance_info, this results in an invalid request as the service account is populated directly in the path. Populating `default` when a value is not set fixes the error. fixes #568
This commit is contained in:
parent
203961b045
commit
30a4e66363
1 changed files with 3 additions and 2 deletions
|
@ -251,8 +251,9 @@ class GcpSession(object):
|
|||
return svc_acct_creds.with_scopes(self.module.params['scopes'])
|
||||
|
||||
if cred_type == 'machineaccount':
|
||||
return google.auth.compute_engine.Credentials(
|
||||
self.module.params['service_account_email'])
|
||||
email = self.module.params['service_account_email']
|
||||
email = email if email is not None else "default"
|
||||
return google.auth.compute_engine.Credentials(email)
|
||||
|
||||
if cred_type == 'accesstoken':
|
||||
access_token = self.module.params['access_token']
|
||||
|
|
Loading…
Add table
Reference in a new issue