Skip to content

Commit

Permalink
WIP: temp debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaso committed Mar 31, 2024
1 parent 2325177 commit 1c65c95
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions vault_oidc_ssh_cert_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ def _issue_github_jwt(jwt_aud: str) -> str:
full_url = f"{req_url}&audience={jwt_aud}"
headers = {"Authorization": f"Bearer {req_token}"}

print(f"URL: {full_url}")
print(f"TOKEN: {req_token}")

response = requests.get(full_url, headers=headers, timeout=10)
response.raise_for_status()

Expand Down

0 comments on commit 1c65c95

Please sign in to comment.