AWS
Secrets Browser
Every Secrets Manager secret with metadata, version count and last-changed date (no values).
Live preview — demo data
What this pane shows
An indexed listing of every Secrets Manager secret in the account — name, ARN, version count, last-changed timestamp, replicated regions, encryption-key reference. The actual secret value is never displayed; this pane is metadata only.
Key use cases
- Find a secret by partial name (where did the prod API key end up?).
- Audit which secrets are replicated to disaster-recovery regions.
- Spot orphan secrets that nothing references any more.
- Confirm a new service's secret is correctly tagged + encrypted.
How to embed
lp.js is the single-entry loader: it injects the shared LightPane runtime
(and sd-embed.css) once per page. Add this pane's own stylesheet and script;
the pane mounts itself wherever the matching <div> is in the DOM.
<!-- In <head> — this pane's stylesheet -->
<link rel="stylesheet" href="https://lightpane.io/_pane-tests/aws/secrets-browser/secrets-browser.css">
<!-- Your access key (inline, or set window.lpEmbed.accessKey from your own JS) -->
<script>window.lpEmbed = { accessKey: "<your-access-key>" };</script>
<!-- Where the pane should appear -->
<div class="lp-secrets-browser-panel" data-lp-account="<your-account-alias>"></div>
<!-- Before </body> — shared loader + this pane's script -->
<script src="https://lightpane.io/embed/lp.js"></script>
<script src="https://lightpane.io/_pane-tests/aws/secrets-browser/secrets-browser.js" defer></script>
Tier
Available on Explorer and above.
Build notes
Mock-only at the moment — live-wiring tracked in the roadmap.