Skip to content
SP StackPractices
beginner By StackPractices

SSL Certificate Management Template

A template for tracking TLS/SSL certificate inventory, renewals, deployments, and expiration risks across domains and services.

Note: This guide follows English-language naming conventions and terminology standards common in international development teams. Examples use English identifiers and comments to maximize compatibility across codebases and tooling.

Overview

SSL/TLS certificates protect data in transit by encrypting traffic between clients and servers. Expired, misconfigured, or forgotten certificates can cause outages, security warnings, and loss of customer trust. This template provides a process for tracking certificate inventory, planning renewals, deploying certificates, and responding to certificate-related incidents.

When to Use

  • Setting up a new domain or public-facing service.
  • Migrating from one certificate provider to another.
  • Preparing for an audit of security or infrastructure hygiene.
  • After a certificate expiry caused an outage or warning.
  • Automating certificate lifecycle management with a tool like Let’s Encrypt, Certbot, or a managed certificate service.

Prerequisites

  • A list of domains, subdomains, and services that use TLS certificates.
  • A certificate authority (CA) or managed certificate provider such as Let’s Encrypt, DigiCert, or AWS ACM.
  • A deployment process for updating certificates on load balancers, web servers, CDNs, and containers.
  • A monitoring system to alert on certificate expiration.
  • Ownership from security, platform, and application teams.

Solution

Template

1. Certificate Inventory

Domain / ServiceCertificate TypeProviderExpiry DateAuto-RenewalOwnerNotes
example.comWildcardLet’s Encrypt2026-09-15YesPlatform teamUsed on CDN
api.example.comStandardDigiCert2026-12-01NoAPI teamManual renewal
app.example.comManagedAWS ACMAutoYesPlatform teamELB attached
internal.example.comSelf-signedInternal CA2027-01-10NoIT teamInternal tools
cdn.example.comStandardCloudflareAutoYesPlatform teamEdge certificate

2. Certificate Lifecycle Stages

StageActivitiesOwnerTiming
RequestIdentify domain, validate ownership, choose CAApplication or platform teamAt provisioning
ApprovalSecurity review, budget approval, CA selectionSecurity / financeBefore purchase
IssuanceGenerate CSR, submit request, download certificatePlatform teamSame day
DeploymentInstall certificate on all endpoints and testPlatform teamSame day
RenewalRequest new certificate before expiryPlatform team30 days before expiry
RevocationRevoke compromised certificate and replaceSecurity teamImmediate
RetirementRemove old certificate from inventory and systemsPlatform teamAfter replacement

3. Renewal Workflow

StepActionOwnerTiming
1Check inventory for certificates expiring within 30, 14, and 7 daysPlatform teamDaily
2Generate or renew certificate with CAPlatform team30 days before expiry
3Validate certificate chain and test in stagingPlatform teamBefore deployment
4Deploy certificate to production endpointsPlatform teamDuring maintenance window
5Verify production endpoint using SSL checkersPlatform teamAfter deployment
6Update inventory and renewal logPlatform teamSame day
7Close renewal ticketPlatform teamSame day

4. Expiry Alert Schedule

Days to ExpiryAlert ChannelAction
60 daysEmail to ownerPlan renewal
30 daysSlack or email to teamStart renewal process
14 daysPage on-call if not renewedEscalate renewal
7 daysPage manager and security leadEmergency renewal or workaround
1 dayPage executive + incident responseTreat as incident

5. Deployment Checklist

  • Certificate and private key are stored securely in a vault or certificate manager.
  • Full certificate chain is included during deployment.
  • Certificate is deployed on all endpoints: load balancers, web servers, CDNs, and proxies.
  • Certificate is tested with tools such as SSL Labs, OpenSSL, or curl.
  • Old certificate is removed from configuration after deployment.
  • Inventory is updated with new expiry date, serial number, and deployment date.
  • Monitoring alerts are confirmed to reflect the new certificate.

6. Incident Response for Certificate Issues

ScenarioResponseOwner
Certificate expired in productionEmergency renew or rollback to previous valid certificatePlatform team + on-call
Certificate misconfiguredRe-deploy correct chain and test all endpointsPlatform team
Certificate compromisedRevoke, replace, and investigate exposureSecurity team
Domain validation failureRe-verify DNS or HTTP validation and retryPlatform team
Auto-renewal failureSwitch to manual renewal and fix automation root causePlatform team

Explanation

Certificate management is a repetitive operational task that becomes risky at scale. The template centralizes inventory, renewal dates, and deployment procedures so that certificates do not expire unexpectedly. It also links certificate health to monitoring and incident response, making certificate issues easier to detect and resolve quickly.

Variants

  • Let’s Encrypt automation: Uses Certbot, acme.sh, or ACME clients with automated renewal and deployment.
  • Managed certificate service: Uses AWS ACM, Azure Key Vault, or Cloudflare SSL for fully managed certificates.
  • Enterprise CA workflow: Uses internal certificate authorities with approval workflows and domain validation.
  • Multi-cloud certificate management: Centralizes certificates across providers using a vault or certificate manager.
  • Container-native certificate management: Uses cert-manager or similar tools in Kubernetes.

Best Practices

  • Maintain a single source of truth for all certificates and their owners.
  • Automate renewal and deployment where possible.
  • Monitor certificate expiry with alerts at 60, 30, 14, 7, and 1 day before expiration.
  • Use short-lived certificates with automated renewal to reduce exposure.
  • Store private keys and certificates in a secure vault.
  • Test certificate deployments in staging before production.
  • Document exceptions for certificates that cannot be auto-renewed.
  • Include certificate checks in change management and audit reviews.

Common Mistakes

  • Relying on manual tracking in spreadsheets without monitoring.
  • Forgetting to deploy the intermediate certificate chain.
  • Missing certificates on secondary endpoints such as CDNs or load balancers.
  • Not updating monitoring after certificate renewal.
  • Leaving expired certificates in configuration files.
  • Using self-signed certificates for public-facing services.
  • Not revoking certificates after a compromise.

FAQs

What is the difference between SSL and TLS?

SSL is the older protocol. TLS is the modern, secure successor. The term “SSL certificate” is still commonly used, but certificates today support TLS 1.2 or TLS 1.3.

Should we use wildcards or separate certificates for each subdomain?

Wildcards are convenient for many subdomains but share a single private key. Separate certificates reduce blast radius and support different renewal cycles. Choose based on security needs and operational complexity.

How do we prevent certificate expiry outages?

Use automated renewal with monitoring alerts, maintain an accurate inventory, and test deployments. Treat certificates expiring within 7 days as incidents.