Skip to content

Commit

Permalink
Fix vault dev token generation
Browse files Browse the repository at this point in the history
  • Loading branch information
kreneskyp committed Oct 26, 2023
1 parent 55ee112 commit c3a3a5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ clean:
rm .vault.env

.vault.env:
@python ./bin/get_uuid.py > .vault.env
@echo "VAULT_DEV_ROOT_TOKEN_ID=$$(python ./bin/get_uuid.py)" > .vault.env
@echo ".vault.env file has been generated with a UUID key."


Expand Down
2 changes: 1 addition & 1 deletion bin/get_uuid.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


def main():
print(f"VAULT_UUID_KEY={uuid4()}")
print(f"{uuid4()}")


if __name__ == "__main__":
Expand Down

0 comments on commit c3a3a5d

Please sign in to comment.