Skip to content

suryatmodulus/zitadel-tools

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zitadel-tools

key2jwt

Convert a key file to jwt token

Usage

key2jwt requires two flags:

  • audience: where the assertion is going to be used (e.g. https://zitadel.cloud or https://{your domain})
  • key: the path to the key.json

The tool prints the result to standard output.

./key2jwt -audience=https://zitadel.cloud -key=key.json

Optionally you can pass an output flag. This will save the jwt in the provided file path:

./key2jwt -audience=https://zitadel.cloud -key=key.json -output=jwt.txt

You can also create a JWT by providing a RSA private key (.pem file). You then also need to specify the issuer of the token:

./key2jwt -audience=https://zitadel.cloud -key=key.pem -issuer=client_id

basicauth

Convert client ID and client secret to be used in Authorization header for Client Secret Basic

Usage

basicauth requires two flags:

  • id: client id
  • secret: client secret

The tool prints the URL- and Base64 encoded result to standard output

go run ./cmd/basicauth/*.go -id $CLIENT_ID -secret $CLIENT_SECRET

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 94.2%
  • JavaScript 5.8%