We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dddd0a commit d722d4cCopy full SHA for d722d4c
plugins/lookup/lookup.py
@@ -391,6 +391,6 @@ def get_secret_data(
391
secret_data: str = secret.to_dict()["data"][field]
392
return [secret_data]
393
except Exception as e:
394
- error_message = f"{SECRET_LOOKUP_ERROR.format(secret_id)}: {e}"
+ error_message = SECRET_LOOKUP_ERROR.format(secret_id, e)
395
display.error(error_message)
396
raise AnsibleLookupError(error_message) from e
0 commit comments