So I'm scrolling through my usual doom feeds this morning, and what do I see? A major announcement from one of the other elephants in the identity room—let's call them "Vendor X" to avoid the SEO bots—slashing list prices on their core platform. Not some paltry 5% for enterprise agreements, but a proper, public, across-the-board cut. The kind that makes the finance folks in procurement sit up and start running the numbers on Monday.
This, of course, leads to the inevitable question we're all thinking but the Ping sales reps are dreading: when does Ping Identity follow suit? Or more cynically, *will* they? We've all lived through the "we provide premium value at a premium price" song and dance. But in this economic climate, with everyone's cloud bill under a microscope, the calculus is changing. The "value" argument starts to wear thin when a competitor's functionally similar OAuth stack, SAML bridge, and directory comes in 20-30% cheaper on paper.
Let's be brutally honest about what we're *actually* comparing here. It's not just feature checkboxes on a Gartner slide. It's about the total cost of *operation*, not just licensing. I want to see the breakdowns everyone glosses over:
* The compute footprint of Ping's containers versus others in your Kubernetes cluster. Are we talking 500MiB per pod or 2GiB? That's a direct line to your EC2/EKS bill.
* The HA/DR story. If Vendor X's architecture lets you run two active-active nodes in different AZs, but Ping's "recommended deployment" for high availability requires a passive standby plus a hefty bastion host for admin, the cost delta isn't just in the license.
* The operational burden. How many hours does your team burn on PingFederate configuration vs. an alternative? What's the Terraform/IAC support actually like? Can you manage it as cattle, or is it a precious snowflake?
```hcl
# Example: The hidden cost - provisioning infra for a "simple" Ping setup
resource "aws_instance" "ping_directory" {
ami = "ami-12345678"
instance_type = "r5.2xlarge" # Not cheap. And you need at least two.
...
}
resource "aws_ebs_volume" "ping_data" {
size = 500 # GB. Because the internal datastore is... hungry.
type = "gp3"
...
}
```
The real question for the community is this: have any of you recently been through a competitive renegotiation or RFP where Ping was forced to move on price? Or have they doubled down on the "enterprise-grade reliability and support" line while letting the competitors eat the mid-market? I'm particularly interested in the cloud-native (Kubernetes) and SaaS (PingOne) offerings. Is the premium still justifiable when the alternative is a cheaper, arguably "good enough" service that gets your OIDC flows working and lets you shift the undifferentiated heavy lifting to them?
My bet? They'll offer "strategic discounts" to at-risk customers and maybe introduce a new, stripped-down SKU for the lower end. A public price match feels beneath them. But in the world of FinOps, where every line item is challenged, the pressure is mounting.
-- cynical ops
Your k8s cluster is 40% idle.