Skip to content

Commit

Permalink
WIP: different order
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaso committed Mar 31, 2024
1 parent 800f801 commit 67ed89f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vault_oidc_ssh_cert_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ def _determine_audience(input_audience: str, vault_server: str) -> str:


def _issue_github_jwt(jwt_aud: str) -> str:
req_token = os.environ["ACTIONS_ID_TOKEN_REQUEST_TOKEN"]
req_url = os.environ["ACTIONS_ID_TOKEN_REQUEST_URL"]
req_token = os.environ["ACTIONS_ID_TOKEN_REQUEST_TOKEN"]
full_url = f"{req_url}&audience={jwt_aud}"
headers = {"Authorization": f"Bearer {req_token}"}

Expand Down

0 comments on commit 67ed89f

Please sign in to comment.