- TechOps Examples
- Posts
- Why SSL Certificates Scale Better Than SSH
Why SSL Certificates Scale Better Than SSH
TechOps Examples
Hey โ It's Govardhana MK ๐
Along with a use case deep dive, we identify the remote job opportunities, top news, tools, and articles in the TechOps industry.
๐ Before we begin... a big thank you to today's sponsor SUPERHUMAN AI
Find out why 1M+ professionals read Superhuman AI daily.
In 2 years you will be working for AI
Or an AI will be working for you
Here's how you can future-proof yourself:
Join the Superhuman AI newsletter โ read by 1M+ people at top companies
Master AI tools, tutorials, and news in just 3 minutes a day
Become 10X more productive using AI
Join 1,000,000+ pros at companies like Google, Meta, and Amazon that are using AI to get ahead.
IN TODAY'S EDITION
๐ง Use Case
Why SSL Certificates Scale Better Than SSH
๐ Top News
State of Code Security in 2025
35% of GitHub repositories are public, exposing code to potential attackers.
61% of organizations have leaked cloud secrets, like API keys and access tokens.
๐ Remote Jobs
GitLab is hiring a Sr. Cloud Programs Manager
Remote Location: Worldwide
Red Hat is hiring a Site Reliability Engineer - OpenShift
Remote Location: India
๐๏ธ Resources
๐ข Reddit Threads
How to Fall Asleep SO Fast in 2 Minutes Like a Navy SEAL โ This video breaks down a powerful sleep technique. It helps calm your body, slow your mind, and drift off quickly even under stress.
A good watch if sleep feels hard.
Youโve heard the hype. Itโs time for results.
For all the buzz around agentic AI, most companies still aren't seeing results. But that's about to change. See real agentic workflows in action, hear success stories from our beta testers, and learn how to align your IT and business teams.
๐ ๏ธ TOOL OF THE DAY
CK-X - Kubernetes certification exam simulator, open-source, free to use, and super easy to self-host with Docker. Includes a web UI, timed tasks, question navigator, and pre-configured K8s environments. Supports Docker, Helm and multiple exam preparation.
๐ง USE CASE
Why SSL Certificates Scale Better Than SSH
We DevOps and Cloud Engineers use SSH and SSL every day, but for very different reasons.
SSH is how we log into servers. It's authentication and remote shell access. You generate a keypair with ssh-keygen
, copy the public key to the server, and you're in.

How SSH works
SSL is how we secure services. It's encryption and identity for traffic between browsers, APIs, and services enabled using certificates like those from Let's Encrypt or AWS ACM.

How SSL works
In short:

In a typical SSH setup, every user has a keypair, and the server stores public keys. If youโve worked on legacy fleets or unmanaged clusters, you know whatโs coming: SSH key sprawl.
I saw a case where 8 engineers were rotating on-call duties. Over time, they accumulated 45 public keys across 30 EC2 instances. Some belonged to interns who had left. Some were from CI runners we no longer used. No expiry, no labels, no audit.
Worse, people were doing ssh-copy-id
directly or using Ansible with inventory files that were never cleaned.
To clean it up, they had to:
Run
find ~/.ssh/authorized_keys
on every nodeBuild an internal tool to map keys to owners based on fingerprints
Rotate all keys using
ssh-keygen -R
and centralized provisioning via SSH certificates
It was a mess. And we swore to never let SSH become the main trust system again.
When we switched to ALB-based apps on AWS, we used ACM certificates for TLS termination. The setup was a one liner in Terraform:
listener {
port = 443
protocol = "HTTPS"
ssl_policy = "ELBSecurityPolicy-TLS13-1-3-2021-06"
certificate_arn = aws_acm_certificate.app_cert.arn }
The certs renewed automatically. Zero manual rotation.
Hereโs the kicker: SSL certificates expire by design, are traceable, and bind to services, not users. That makes them scalable.
If youโre building for scale, use SSL for service-to-service, client-to-server, or browser-to-backend.
Harsh reality of many DevOps roles.
Your current DevOps role may not make you future ready.
DevOps is not just CI/CD.
The best part - Your life doesnโt end here.
1) aws. amazon. com > AWS Free Tier > Sign up
2) aws. amazon. com > AWS Whitepapers & Guides > Pick a White
โ TechOps Examples (@techopsexamples)
4:33 AM โข Apr 17, 2025