AWS
Global Resource Search
Free-text search across every discovered AWS resource — instances, buckets, functions, databases.
Live preview — demo data
Same idea on another cloud
What this pane shows
A search bar over every resource the discovery layer knows about: EC2 instances, S3 buckets, Lambda functions, RDS databases, DynamoDB tables, IAM roles and many more. Results show the service, region and a couple of key attributes so the right hit is obvious. Clicking a result jumps to the relevant per-service pane.
Key use cases
- Find a resource by partial name when you can't remember exactly which account or region it's in.
- Track every instance of a naming pattern (e.g. all -prod- resources).
- Audit how many resources share a substring across the estate.
- Quickly find the right resource to attach to a ticket or runbook.
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/global-search/global-search.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-global-search-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/global-search/global-search.js" defer></script>
Tier
Available on Builder and above.
Build notes
Mock-only at the moment — live-wiring tracked in the roadmap.