Claude Code Skills·Claude Skills·The open SKILL.md registry for Claude
ClaudSkills / Security / security-misc

Elasticsearch Hot Reload Credentials Migration

Category: Security  ·  Sub-category: security-misc  ·  Last updated:
Set up hot-reloading Elasticsearch managed credentials on a BEDEV2 service (C#, Go, or Python) so creds rotate from Vault with no service restart — both migrating an existing service off static credentials and standing up a brand-new (greenfield) service with hot-reload from the start. C# services adopt Roblox.RobloxElasticsearchClient 2.0.0, which is generic over the client type and works with ANY Elasticsearch client — ES7 (NEST/Elasticsearch.Net) or ES8 (Elastic.Clients.Elasticsearch) — by supplying a ~15-line client builder; Go services on go-elasticsearch (v7 or v8) adopt the eshotreload library (NewStore + eshv7/eshv8 NewClient); Python services on elasticsearch-py (v7 or v8) adopt the roblox-eshotreload library (new_started_store + eshotreload.es7/es8 new_client). Use when a service constructs its own Elasticsearch client (new ElasticsearchClient(...), ElasticsearchClientSettings, BasicAuthentication, ElasticsearchClientFactory in C#; elasticsearch.NewClient with Username/Password/APIKey in Go; Elasticsearch(basic_auth=..., api_key=...) or connection_class with static auth in Python), reads ES creds from env vars / appsettings / config (ElasticSearchUsername, ElasticSearchPassword, ElasticsearchClientSettings__*, ELASTIC_CLIENT_USER_*, ES_USERNAME/ES_PASSWORD, ES_API_KEY), needs to adopt managed credentials / managed_secrets.json, set meta.EnableManagedCredentials, stop restarting on credential rotation, or is asked to move to hot-reloading / rotating Elasticsearch credentials. Also use when a new or greenfield service needs to add an Elasticsearch client with rotating/hot-reload credentials, or a service already has an ES client but no managed-credentials wiring yet. Also covers eshotreload, http.RoundTripper-based credential injection (Go), the elastic_transport Node / elasticsearch.connection subclass injection (Python), and the ccgen managed_secrets.json schema. As of library 2.0.0 there is NO client-version gate in C#: NEST (Nest, IElasticClient) and Elasticsearch.Net (IElasticLowLevelClient) services adopt hot-reload directly via their own builder — no v7→v8 rewrite required first (a v7→v8 client migration is a separate, optional concern for ES9 readiness, not a prerequisite for credential hot-reload). Go and Python have no such gate either — v7 and v8 wrappers ship side by side.
Security AStatic scan found no risk patternsHow grading works ›

From the source SKILL.md

Move a service off statically-injected Elasticsearch credentials (env vars baked in at process start, requiring a Nomad restart on every Vault rotation) and onto a hot-reloading credential source backed by the framework-mounted /secrets/ccgen/managed_secrets.json — no restart, no dropped in-flight queries. This works for C#, Go, and Python services; the code recipe differs by language but the concepts, cluster-name join key, and deployment change are shared.

What this skill does

Elasticsearch Hot Reload Credentials Migration is a community-contributed Claude Code skill in the security-misc sub-category. It ships as a SKILL.md file that Claude Code auto-discovers under ~/.claude/skills/elasticsearch-hot-reload-credentials-migration/ and loads when your prompt matches the skill's trigger.

When to invoke it: Use when a service constructs its own Elasticsearch client (new ElasticsearchClient(.

Who uses this skill

The Elasticsearch Hot Reload Credentials Migration Claude Code skill is built for security engineers, penetration testers, DevSecOps practitioners, and development teams hardening codebases and infrastructure. It's part of ClaudSkills (also referred to as Claude Skills or Claude Code Skills) — the open community-curated registry of 174,000+ SKILL.md files for Anthropic's Claude Code agent and the wider Claude ecosystem (Claude API, Claude Agent SDK).

How to install

Free

Manual install (2 steps)

mkdir -p ~/.claude/skills/elasticsearch-hot-reload-credentials-migration
curl -L https://claudskills.com/skills/elasticsearch-hot-reload-credentials-migration/SKILL.md \
  -o ~/.claude/skills/elasticsearch-hot-reload-credentials-migration/SKILL.md

Or just download SKILL.md directly and drop it into ~/.claude/skills/elasticsearch-hot-reload-credentials-migration/. Claude Code auto-discovers it on next session.

Skills live at ~/.claude/skills/elasticsearch-hot-reload-credentials-migration/SKILL.md on macOS/Linux, or %USERPROFILE%\.claude\skills\elasticsearch-hot-reload-credentials-migration\SKILL.md on Windows. See the full install guide for step-by-step instructions.

Telegram

📱 Install from your phone or desktop Telegram

Open @claudskills_bot on Telegram, tap Open Desktop App, and the desktop app installs this skill for you. Or share the bot link with a colleague — they get the same one-tap install. Learn more →

Pro

One-click install via the desktop app

The ClaudSkills desktop app installs any skill directly into ~/.claude/skills/ with one click — no terminal required. Pro starts at $9/mo or $149 lifetime.

Pro

For the full experience including quality scoring and one-click install features for each skill — upgrade to Pro.

Frequently asked questions

How do I install the Elasticsearch Hot Reload Credentials Migration Claude Code skill?
Install via the ClaudSkills desktop app (one click) or copy SKILL.md from the source repository to ~/.claude/skills/elasticsearch-hot-reload-credentials-migration/SKILL.md and restart Claude Code. Both flows are detailed at claudskills.com/install/.
What does the Elasticsearch Hot Reload Credentials Migration skill do?
Set up hot-reloading Elasticsearch managed credentials on a BEDEV2 service (C#, Go, or Python) so creds rotate from Vault with no service restart — both migrating an existing service off static credentials and standing up a brand-new (greenfield) service with hot-reload from the start. C# services adopt Roblox.RobloxElasticsearchClient 2.0.0, which is generic over the client type and works with ANY Elasticsearch client — ES7 (NEST/Elasticsearch.Net) or ES8 (Elastic.Clients.Elasticsearch) — by supplying a ~15-line client builder; Go services on go-elasticsearch (v7 or v8) adopt the eshotreload library (NewStore + eshv7/eshv8 NewClient); Python services on elasticsearch-py (v7 or v8) adopt the roblox-eshotreload library (new_started_store + eshotreload.es7/es8 new_client). Use when a service constructs its own Elasticsearch client (new ElasticsearchClient(...), ElasticsearchClientSettings, BasicAuthentication, ElasticsearchClientFactory in C#; elasticsearch.NewClient with Username/Password/APIKey in Go; Elasticsearch(basic_auth=..., api_key=...) or connection_class with static auth in Python), reads ES creds from env vars / appsettings / config (ElasticSearchUsername, ElasticSearchPassword, ElasticsearchClientSettings__*, ELASTIC_CLIENT_USER_*, ES_USERNAME/ES_PASSWORD, ES_API_KEY), needs to adopt managed credentials / managed_secrets.json, set meta.EnableManagedCredentials, stop restarting on credential rotation, or is asked to move to hot-reloading / rotating Elasticsearch credentials. Also use when a new or greenfield service needs to add an Elasticsearch client with rotating/hot-reload credentials, or a service already has an ES client but no managed-credentials wiring yet. Also covers eshotreload, http.RoundTripper-based credential injection (Go), the elastic_transport Node / elasticsearch.connection subclass injection (Python), and the ccgen managed_secrets.json schema. As of library 2.0.0 there is NO client-version gate in C#: NEST (Nest, IElasticClient) and Elasticsearch.Net (IElasticLowLevelClient) services adopt hot-reload directly via their own builder — no v7→v8 rewrite required first (a v7→v8 client migration is a separate, optional concern for ES9 readiness, not a prerequisite for credential hot-reload). Go and Python have no such gate either — v7 and v8 wrappers ship side by side.
Is this skill free to install?
Yes. ClaudSkills is an open registry — every skill keeps its source repository's license, and manual install via copy is free. ClaudSkills Pro ($9/mo, $79/yr, or $149 one-time) adds one-click install via the desktop app and a multi-signal Quality Score.
When should I use the Elasticsearch Hot Reload Credentials Migration skill?
Use Elasticsearch Hot Reload Credentials Migration when your Claude Code task falls under the Security category — specifically in the security misc area. Claude Code auto-discovers installed skills and invokes the right one based on the task description, so you can also ask Claude directly (e.g. "use Elasticsearch Hot Reload Credentials Migration" or describe the task and let Claude pick). Browse related skills at /category/security/.
What is a Claude Code skill and how does the Elasticsearch Hot Reload Credentials Migration skill fit in?
A Claude Code skill is a SKILL.md file that lives under ~/.claude/skills/<name>/ and tells the Claude Code CLI agent how to perform a specific task (instructions, prompts, allowed tools). Skills are auto-discovered at session start. Elasticsearch Hot Reload Credentials Migration is one of 67,000+ skills indexed in the open ClaudSkills catalog, classified under the Security category. Learn more at /learn/what-is-a-claude-skill/.

Attribution & license

Cite this skill

If you reference this skill in a blog post, paper, or documentation, you can cite it as:

APA
druhinb. (2026). Elasticsearch Hot Reload Credentials Migration [Claude Code skill]. ClaudSkills. https://claudskills.com/skills/elasticsearch-hot-reload-credentials-migration/
BibTeX
@misc{elasticsearch-hot-reload-credentials-migration-2026,
  author    = {druhinb},
  title     = {Elasticsearch Hot Reload Credentials Migration [Claude Code skill]},
  year      = {2026},
  publisher = {ClaudSkills},
  url       = {https://claudskills.com/skills/elasticsearch-hot-reload-credentials-migration/}
}

Embed this skill

Promote, attribute, or link this skill from your own README, blog post, or documentation. All three snippets are free to use — no sign-up, no API key. More distribution surfaces →

Badge
[![ClaudSkills](https://claudskills.com/badge/elasticsearch-hot-reload-credentials-migration.svg)](https://claudskills.com/skills/elasticsearch-hot-reload-credentials-migration/?utm_source=badge&utm_medium=readme&utm_campaign=skill_badge)
<script>
<script src="https://claudskills.com/embed/elasticsearch-hot-reload-credentials-migration.js" async></script>
<iframe>
<iframe src="https://claudskills.com/embed/elasticsearch-hot-reload-credentials-migration.html" width="100%" height="160" frameborder="0" loading="lazy" title="ClaudSkills: Elasticsearch Hot Reload Credentials Migration"></iframe>

Security scan

Grade A · scanned 2026-08-02 — free static scan against the OWASP Agentic Skills Top 10.

No risk patterns were found in any of the ten OWASP-aligned categories. How grading works ›

Show this grade on your repo (click to copy):

[![Security: A](https://img.shields.io/badge/Security-A-2e7d32)](https://claudskills.com/skills/elasticsearch-hot-reload-credentials-migration/#security)

Free. No spam. Unsubscribe in one click.

More Security skills

Browse all Security skills in the ClaudSkills registry, or explore these other picks from the same category:

Browse all Security skills → Top 100 skills
Part of ClaudSkills — the open registry for Claude Skills & Claude Code Skills.  ·  What's New  ·  Install guide  ·  About  ·  llms.txt

Part of Acreator Store — Adam Lankamer's AI tools: PerfectStudio · Ucaption · UTagger · AutoXPoster · TestYourSkills · AutomationFlows · Au Naturel · Telegram @acreatorstore