Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
alirezarezvani avatar

Secrets Vault Manager

  • 674 installs
  • 23.5k repo stars
  • Updated July 17, 2026
  • alirezarezvani/claude-skills

secrets-vault-manager is a Claude Code skill that securely manages, rotates, and references cloud secrets across AWS, Azure, and GCP without hard-coding credentials in application code.

About

secrets-vault-manager is a security skill for cloud secret store operations across AWS Secrets Manager, Azure Key Vault, and GCP Secret Manager. It documents provider feature matrices covering secret types, automatic versioning, rotation via Lambda or Cloud Functions, KMS and HSM encryption, and cross-region replication. Developers reach for secrets-vault-manager when migrating hard-coded API keys to vaults, configuring rotation policies, or choosing between AWS 64 KB, Azure 25 KB secret, and GCP 64 KB size limits. The skill supports secure reference patterns in application code, compliance-friendly encryption options including FIPS 140-2 Level 2 HSM backing on Azure, and operational rotation workflows without exposing credentials in repositories or environment files committed to git.

  • Comprehensive feature matrix comparing AWS Secrets Manager, Azure Key Vault, and GCP Secret Manager
  • Decision guide with clear provider selection criteria based on workload type
  • Details on secret types, versioning, rotation, encryption, and access control for each provider
  • Cost model and free tier breakdown to inform architecture decisions
  • Hard-gate: always retrieve live secrets via ARN/URI rather than embedding values

Secrets Vault Manager by the numbers

  • 674 all-time installs (skills.sh)
  • Ranked #450 of 2,203 Security skills by installs in the Skillselion catalog
  • Security screen: HIGH risk (skills.sh audit)
  • Data as of Jul 31, 2026 (Skillselion catalog sync)
npx skills add https://github.com/alirezarezvani/claude-skills --skill secrets-vault-manager

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs674
repo stars23.5k
Security audit1 / 3 scanners passed
Last updatedJuly 17, 2026
Repositoryalirezarezvani/claude-skills

How do you manage cloud secrets without hard-coding credentials?

Securely manage, rotate, and reference cloud secrets across AWS, Azure, and GCP without hard-coding credentials.

Who is it for?

Backend and DevOps developers migrating credentials to AWS Secrets Manager, Azure Key Vault, or GCP Secret Manager with rotation and versioning.

Skip if: Teams storing secrets only in local .env files without cloud vaults, or projects with no multi-cloud secret management requirements.

When should I use this skill?

The user needs to store, rotate, or reference secrets in AWS Secrets Manager, Azure Key Vault, or GCP Secret Manager without hard-coding keys.

What you get

Vault-backed secret references, rotation policies, encrypted secret versions, and provider comparison for AWS, Azure, and GCP.

  • vault reference patterns
  • rotation policy guidance
  • provider feature comparison matrix

By the numbers

  • AWS and GCP max secret size 64 KB
  • Azure Key Vault secret max size 25 KB
  • Azure certificates supported up to 200 KB

Files

SKILL.mdMarkdownGitHub ↗

Secrets Vault Manager

Tier: POWERFUL Category: Engineering Domain: Security / Infrastructure / DevOps

---

Overview

Production secret infrastructure management for teams running HashiCorp Vault, cloud-native secret stores, or hybrid architectures. This skill covers policy authoring, auth method configuration, automated rotation, dynamic secrets, audit logging, and incident response.

Distinct from env-secrets-manager which handles local .env file hygiene and leak detection. This skill operates at the infrastructure layer — Vault clusters, cloud KMS, certificate authorities, and CI/CD secret injection.

When to Use

  • Standing up a new Vault cluster or migrating to a managed secret store
  • Designing auth methods for services, CI runners, and human operators
  • Implementing automated credential rotation (database, API keys, certificates)
  • Auditing secret access patterns for compliance (SOC 2, ISO 27001, HIPAA)
  • Responding to a secret leak that requires mass revocation
  • Integrating secrets into Kubernetes workloads or CI/CD pipelines

---

HashiCorp Vault Patterns

Architecture Decisions

DecisionRecommendationRationale
Deployment modeHA with Raft storageNo external dependency, built-in leader election
Auto-unsealCloud KMS (AWS KMS / Azure Key Vault / GCP KMS)Eliminates manual unseal, enables automated restarts
NamespacesOne per environment (dev/staging/prod)Blast-radius isolation, independent policies
Audit devicesFile + syslog (dual)Vault refuses requests if all audit devices fail — dual prevents outages

Auth Methods

AppRole — Machine-to-machine authentication for services and batch jobs.

# Enable AppRole
path "auth/approle/*" {
  capabilities = ["create", "read", "update", "delete", "list"]
}

# Application-specific role
vault write auth/approle/role/payment-service \
  token_ttl=1h \
  token_max_ttl=4h \
  secret_id_num_uses=1 \
  secret_id_ttl=10m \
  token_policies="payment-service-read"

Kubernetes — Pod-native authentication via service account tokens.

vault write auth/kubernetes/role/api-server \
  bound_service_account_names=api-server \
  bound_service_account_namespaces=production \
  policies=api-server-secrets \
  ttl=1h

OIDC — Human operator access via SSO provider (Okta, Azure AD, Google Workspace).

vault write auth/oidc/role/engineering \
  bound_audiences="vault" \
  allowed_redirect_uris="https://vault.example.com/ui/vault/auth/oidc/oidc/callback" \
  user_claim="email" \
  oidc_scopes="openid,profile,email" \
  policies="engineering-read" \
  ttl=8h

Secret Engines

EngineUse CaseTTL Strategy
KV v2Static secrets (API keys, config)Versioned, manual rotation
DatabaseDynamic DB credentials1h default, 24h max
PKITLS certificates90d leaf certs, 5y intermediate CA
TransitEncryption-as-a-serviceKey rotation every 90d
SSHSigned SSH certificates30m for interactive, 8h for automation

Policy Design

Follow least-privilege with path-based granularity:

# payment-service-read policy
path "secret/data/production/payment/*" {
  capabilities = ["read"]
}

path "database/creds/payment-readonly" {
  capabilities = ["read"]
}

# Deny access to admin paths explicitly
path "sys/*" {
  capabilities = ["deny"]
}

Policy naming convention: {service}-{access-level} (e.g., payment-service-read, api-gateway-admin).

---

Cloud Secret Store Integration

Comparison Matrix

FeatureAWS Secrets ManagerAzure Key VaultGCP Secret Manager
RotationBuilt-in LambdaCustom logic via FunctionsCloud Functions
VersioningAutomaticManual or automaticAutomatic
EncryptionAWS KMS (default or CMK)HSM-backedGoogle-managed or CMEK
Access controlIAM policies + resource policyRBAC + Access PoliciesIAM bindings
Cross-regionReplication supportedGeo-redundant by defaultReplication supported
AuditCloudTrailAzure Monitor + Diagnostic LogsCloud Audit Logs
Pricing modelPer-secret + per-API callPer-operation + per-keyPer-secret version + per-access

When to Use Which

  • AWS Secrets Manager: RDS/Aurora credential rotation out of the box. Best when fully on AWS.
  • Azure Key Vault: Certificate management strength. Required for Azure AD integrated workloads.
  • GCP Secret Manager: Simplest API surface. Best for GKE-native workloads with Workload Identity.
  • HashiCorp Vault: Multi-cloud, dynamic secrets, PKI, transit encryption. Best for complex or hybrid environments.

SDK Access Patterns

Principle: Always fetch secrets at startup or via sidecar — never bake into images or config files.

# AWS Secrets Manager pattern
import boto3, json

def get_secret(secret_name, region="us-east-1"):
    client = boto3.client("secretsmanager", region_name=region)
    response = client.get_secret_value(SecretId=secret_name)
    return json.loads(response["SecretString"])
# GCP Secret Manager pattern
from google.cloud import secretmanager

def get_secret(project_id, secret_id, version="latest"):
    client = secretmanager.SecretManagerServiceClient()
    name = f"projects/{project_id}/secrets/{secret_id}/versions/{version}"
    response = client.access_secret_version(request={"name": name})
    return response.payload.data.decode("UTF-8")
# Azure Key Vault pattern
from azure.identity import DefaultAzureCredential
from azure.keyvault.secrets import SecretClient

def get_secret(vault_url, secret_name):
    credential = DefaultAzureCredential()
    client = SecretClient(vault_url=vault_url, credential=credential)
    return client.get_secret(secret_name).value

---

Secret Rotation Workflows

Rotation Strategy by Secret Type

Secret TypeRotation FrequencyMethodDowntime Risk
Database passwords30 daysDual-account swapZero (A/B rotation)
API keys90 daysGenerate new, deprecate oldZero (overlap window)
TLS certificates60 days before expiryACME or Vault PKIZero (graceful reload)
SSH keys90 daysVault-signed certificatesZero (CA-based)
Service tokens24 hoursDynamic generationZero (short-lived)
Encryption keys90 daysKey versioning (rewrap)Zero (version coexistence)

Database Credential Rotation (Dual-Account)

1. Two database accounts exist: app_user_a and app_user_b 2. Application currently uses app_user_a 3. Rotation rotates app_user_b password, updates secret store 4. Application switches to app_user_b on next credential fetch 5. After grace period, app_user_a password is rotated 6. Cycle repeats

API Key Rotation (Overlap Window)

1. Generate new API key with provider 2. Store new key in secret store as current, move old to previous 3. Deploy applications — they read current 4. After all instances restarted (or TTL expired), revoke previous 5. Monitoring confirms zero usage of old key before revocation

---

Dynamic Secrets

Dynamic secrets are generated on-demand with automatic expiration. Prefer dynamic secrets over static credentials wherever possible.

Database Dynamic Credentials (Vault)

# Configure database engine
vault write database/config/postgres \
  plugin_name=postgresql-database-plugin \
  connection_url="postgresql://{{username}}:{{password}}@db.example.com:5432/app" \
  allowed_roles="app-readonly,app-readwrite" \
  username="vault_admin" \
  password="<admin-password>"

# Create role with TTL
vault write database/roles/app-readonly \
  db_name=postgres \
  creation_statements="CREATE ROLE \"{{name}}\" WITH LOGIN PASSWORD '{{password}}' VALID UNTIL '{{expiration}}'; GRANT SELECT ON ALL TABLES IN SCHEMA public TO \"{{name}}\";" \
  default_ttl=1h \
  max_ttl=24h

Cloud IAM Dynamic Credentials

Vault can generate short-lived AWS IAM credentials, Azure service principal passwords, or GCP service account keys — eliminating long-lived cloud credentials entirely.

SSH Certificate Authority

Replace SSH key distribution with a Vault-signed certificate model:

1. Vault acts as SSH CA 2. Users/machines request signed certificates with short TTL (30 min) 3. SSH servers trust the CA public key — no authorized_keys management 4. Certificates expire automatically — no revocation needed for normal operations

---

Audit Logging

What to Log

EventPriorityRetention
Secret read accessHIGH1 year minimum
Secret creation/updateHIGH1 year minimum
Auth method loginMEDIUM90 days
Policy changesCRITICAL2 years (compliance)
Failed access attemptsCRITICAL1 year
Token creation/revocationMEDIUM90 days
Seal/unseal operationsCRITICALIndefinite

Anomaly Detection Signals

  • Secret accessed from new IP/CIDR range
  • Access volume spike (>3x baseline for a path)
  • Off-hours access for human auth methods
  • Service accessing secrets outside its policy scope (denied requests)
  • Multiple failed auth attempts from single source
  • Token created with unusually long TTL

Compliance Reporting

Generate periodic reports covering:

1. Access inventory — Which identities accessed which secrets, when 2. Rotation compliance — Secrets overdue for rotation 3. Policy drift — Policies modified since last review 4. Orphaned secrets — Secrets with no recent access (>90 days)

Use audit_log_analyzer.py to parse Vault or cloud audit logs for these signals.

---

Emergency Procedures

Secret Leak Response (Immediate)

Time target: Contain within 15 minutes of detection.

1. Identify scope — Which secret(s) leaked, where (repo, log, error message, third party) 2. Revoke immediately — Rotate the compromised credential at the source (provider API, Vault, cloud SM) 3. Invalidate tokens — Revoke all Vault tokens that accessed the leaked secret 4. Audit blast radius — Query audit logs for usage of the compromised secret in the exposure window 5. Notify stakeholders — Security team, affected service owners, compliance (if PII/regulated data) 6. Post-mortem — Document root cause, update controls to prevent recurrence

Vault Seal Operations

When to seal: Active security incident affecting Vault infrastructure, suspected key compromise.

Sealing stops all Vault operations. Use only as last resort.

Unseal procedure: 1. Gather quorum of unseal key holders (Shamir threshold) 2. Or confirm auto-unseal KMS key is accessible 3. Unseal via vault operator unseal or restart with auto-unseal 4. Verify audit devices reconnected 5. Check active leases and token validity

See references/emergency_procedures.md for complete playbooks.

---

CI/CD Integration

Vault Agent Sidecar (Kubernetes)

Vault Agent runs alongside application pods, handles authentication and secret rendering:

# Pod annotation for Vault Agent Injector
annotations:
  vault.hashicorp.com/agent-inject: "true"
  vault.hashicorp.com/role: "api-server"
  vault.hashicorp.com/agent-inject-secret-db: "database/creds/app-readonly"
  vault.hashicorp.com/agent-inject-template-db: |
    {{- with secret "database/creds/app-readonly" -}}
    postgresql://{{ .Data.username }}:{{ .Data.password }}@db:5432/app
    {{- end }}

External Secrets Operator (Kubernetes)

For teams preferring declarative GitOps over agent sidecars:

apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret
metadata:
  name: api-credentials
spec:
  refreshInterval: 1h
  secretStoreRef:
    name: vault-backend
    kind: ClusterSecretStore
  target:
    name: api-credentials
  data:
    - secretKey: api-key
      remoteRef:
        key: secret/data/production/api
        property: key

GitHub Actions OIDC

Eliminate long-lived secrets in CI by using OIDC federation:

- name: Authenticate to Vault
  uses: hashicorp/vault-action@v2
  with:
    url: https://vault.example.com
    method: jwt
    role: github-ci
    jwtGithubAudience: https://vault.example.com
    secrets: |
      secret/data/ci/deploy api_key | DEPLOY_API_KEY ;
      secret/data/ci/deploy db_password | DB_PASSWORD

---

Anti-Patterns

Anti-PatternRiskCorrect Approach
Hardcoded secrets in source codeLeak via repo, logs, error outputFetch from secret store at runtime
Long-lived static tokens (>30 days)Stale credentials, no accountabilityDynamic secrets or short TTL + rotation
Shared service accountsNo audit trail per consumerPer-service identity with unique credentials
No rotation policyCompromised creds persist indefinitelyAutomated rotation on schedule
Secrets in environment variables on CIVisible in build logs, process tableVault Agent or OIDC-based injection
Single unseal key holderBus factor of 1, recovery blockedShamir split (3-of-5) or auto-unseal
No audit device configuredZero visibility into accessDual audit devices (file + syslog)
Wildcard policies (path "*")Over-permissioned, violates least privilegeExplicit path-based policies per service

---

Tools

ScriptPurpose
vault_config_generator.pyGenerate Vault policy and auth config from application requirements
rotation_planner.pyCreate rotation schedule from a secret inventory file
audit_log_analyzer.pyAnalyze audit logs for anomalies and compliance gaps

---

Cross-References

  • env-secrets-manager — Local .env file hygiene, leak detection, drift awareness
  • senior-secops — Security operations, incident response, threat modeling
  • ci-cd-pipeline-builder — Pipeline design where secrets are consumed
  • docker-development — Container secret injection patterns
  • helm-chart-builder — Kubernetes secret management in Helm charts

Related skills

How it compares

Use secrets-vault-manager over generic security audit skills when the task is specifically cloud vault selection, rotation, and secure reference patterns.

FAQ

Which cloud vaults does secrets-vault-manager cover?

secrets-vault-manager covers AWS Secrets Manager, Azure Key Vault, and GCP Secret Manager. It compares secret types, versioning, rotation mechanisms, encryption options, and cross-region replication across all three providers.

What secret size limits does secrets-vault-manager document?

secrets-vault-manager documents AWS and GCP maximum secret sizes of 64 KB and Azure Key Vault secret limits of 25 KB, with certificates up to 200 KB on Azure. Rotation support varies by built-in Lambda on AWS versus custom Functions on Azure and GCP.

Is Secrets Vault Manager safe to install?

skills.sh reports 1 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

Securitysecretscompliance

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.