LLM Skills
~/catalog/backend//SKILL
BackendGitHub source

mTLS Configuration

/SKILL

Comprehensive guide to implementing mutual TLS for zero-trust service mesh communication.

wshobsonwshobson
38.9k
June 5, 2026
MIT
// skill content

--- name: mtls-configuration description: Configure mutual TLS (mTLS) for zero-trust service-to-service communication. Use when implementing zero-trust networking, certificate management, or securing internal service communication. --- # mTLS Configuration Comprehensive guide to implementing mutual TLS for zero-trust service mesh communication. ## When to Use This Skill - Implementing zero-trust networking - Securing service-to-service communication - Certificate rotation and management - Debugging TLS handshake issues - Compliance requirements (PCI-DSS, HIPAA) - Multi-cluster secure communication ## Core Concepts ### 1. mTLS Flow `` ┌─────────┐ ┌─────────┐ │ Service │ │ Service │ │ A │ │ B │ └────┬────┘ └────┬────┘ │ │ ┌────┴────┐ TLS Handshake ┌────┴────┐ │ Proxy │◄───────────────────────────►│ Proxy │ │(Sidecar)│ 1. ClientHello │(Sidecar)│ │ │ 2. ServerHello + Cert │ │ │ │ 3. Client Cert │ │ │ │ 4. Verify Both Certs │ │ │ │ 5. Encrypted Channel │ │ └─────────┘ └─────────┘ ` ### 2. Certificate Hierarchy ` Root CA (Self-signed, long-lived) │ ├── Intermediate CA (Cluster-level) │ │ │ ├── Workload Cert (Service A) │ └── Workload Cert (Service B) │ └── Intermediate CA (Multi-cluster) │ └── Cross-cluster certs ` ## Templates and detailed worked examples Full template library and detailed worked examples live in references/details.md`. Read that file when you need the concrete templates. ## Best Practices ### Do's - Start with PERMISSIVE - Migrate gradually to STRICT - Monitor certificate expiry - Set up alerts - Use short-lived certs - 24h or less for workloads - Rotate CA periodically - Plan for CA rotation - Log TLS errors - For debugging and audit ### Don'ts - Don't disable mTLS - For convenience in production - Don't ignore cert expiry - Automate rotation - Don't use self-signed certs - Use proper CA hierarchy - Don't skip verification - Verify the full chain

// original public source
wshobson/agents
/plugins/cloud-infrastructure/skills/mtls-configuration/SKILL.md
License: MIT
Independent project, not affiliated with Anthropic. This skill remains the property of its original author.
// install this skill
Paste this command in your terminal at the root of your project:
mkdir -p .claude/commands && curl -o ".claude/commands/SKILL.md" "https://raw.githubusercontent.com/wshobson/agents/main/plugins/cloud-infrastructure/skills/mtls-configuration/SKILL.md"
Then in Claude Code, type /SKILL to activate it.
open_in_newOpen original source
// save
Save available after sign in.
loginSign in to save
// information
Creatorwshobson
Stars 38.9k
CategoryBackend
LicenseMIT
UpdatedJune 5, 2026
Format.md
AccessFree
// similar

Skills Backend

View allarrow_forward