mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-05 18:30:27 -07:00
Fix 404 errors when creating key with misspelled service account
This commit is contained in:
parent
d49925c96d
commit
56833b4be4
2 changed files with 9 additions and 1 deletions
4
changelogs/fragments/fix-sa-key-create.yml
Normal file
4
changelogs/fragments/fix-sa-key-create.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
bugfixes:
|
||||
- gcp_iam_service_account_key - properly raise an error with context when no
|
||||
service account of the specified name exists, instead of failing with a
|
||||
stacktrace.
|
|
@ -255,7 +255,11 @@ def main():
|
|||
|
||||
def create(module):
|
||||
auth = GcpSession(module, 'iam')
|
||||
json_content = return_if_object(module, auth.post(self_link(module), resource_to_request(module)))
|
||||
response = auth.post(self_link(module), resource_to_request(module))
|
||||
if response.status_code == 404:
|
||||
name = replace_resource_dict(module.params['service_account'], 'name')
|
||||
module.fail_json(msg="No such Service Account: %s" % name)
|
||||
json_content = return_if_object(module, response)
|
||||
with open(module.params['path'], 'w') as f:
|
||||
private_key_contents = to_native(base64.b64decode(json_content['privateKeyData']))
|
||||
f.write(private_key_contents)
|
||||
|
|
Loading…
Add table
Reference in a new issue