Secret Editor is a modern lightweight cross-platform AWS Secrets Manager editor desktop app available for Mac, Windows, and Linux.
- Create a new blank Secret
- List and open available secrets on the current AWS account
- Edit & Save JSON secrets with syntax validation
- Lightweight, built on Webview2, without embedded browsers (Thanks to Wails).
- Visually and user-friendly UI (Thanks to shadcn vue and codemirror).
Available to download for free from here.
Currently it's required to have AWS credentials setup in your home path, same as for the AWS cli (more info here).
The default
profile will be used, and those are the minimum IAM requirements:
[
"secretsmanager:CreateSecret",
"secretsmanager:DescribeSecret",
"secretsmanager:GetSecretValue",
"secretsmanager:ListSecretVersionIds",
"secretsmanager:ListSecrets",
"secretsmanager:PutSecretValue",
"secretsmanager:UpdateSecret"
]
Prerequisites:
- Go (latest version)
- Node.js >= 20 & NPM
- Wails
To run in live development mode, run wails dev
in the project directory. This will run a Vite development
server that will provide very fast hot reload of your frontend changes. If you want to develop in a browser
and have access to your Go methods, there is also a dev server that runs on http://localhost:34115. Connect
to this in your browser, and you can call your Go code from devtools.
To build a redistributable, production mode package, use wails build
.
- Before open or create warning
- Before close warning
- AWS Credentials setup
- Secret out of version check
- Theme settings
- Blur secret when out of focus setting