Identity Provider Client ID (per route)
Summary
When set, Identity Provider Client ID (per route) overrides the value of idp_client_id set globally for this route.
How to configure
- Core
- Enterprise
- Kubernetes
- Enterprise via Terraform
| YAML/JSON setting | Type | Usage |
|---|---|---|
idp_client_id | string | optional |
Examples
routes:
- from: https://verify.localhost.pomerium.io
to: http://verify:8000
idp_client_id: idp_client_id
Set Identity Provider Client ID (per route) in the Console:

Kubernetes does not support idp_client_id (per route)
| Parameter name | Type | Usage |
|---|---|---|
idp_client_id | String | optional |
Examples
resource "pomerium_route" "verify_route" {
name = "verify-route"
namespace_id = pomerium_namespace.test_namespace.id
from = "https://verify.localhost.pomerium.io"
to = ["https://verify.pomerium.com"]
idp_client_id = idp_client_id
}