gateway: add HMAC request signature authentication - #4652
Open
gousteris wants to merge 1 commit into
Open
Conversation
gousteris
force-pushed
the
gateway-hmac-auth
branch
from
July 31, 2026 13:51
c60b2da to
8b9e740
Compare
gousteris
force-pushed
the
gateway-hmac-auth
branch
3 times, most recently
from
August 4, 2026 14:14
244b87a to
b4539f1
Compare
gousteris
force-pushed
the
gateway-hmac-auth
branch
from
August 4, 2026 14:23
b4539f1 to
211e9c1
Compare
Adds an optional auth.hmac config block to the gateway input that authenticates incoming requests by verifying a hex-encoded HMAC signature (SHA-256 or SHA-512) of the raw request body against a shared secret, read from a configurable request header. When set it replaces the platform-managed JWT/RBAC authentication for the endpoint, supporting webhook-style callers that sign their payloads instead of presenting a bearer token (e.g. Terraform Cloud Run Tasks). The auth block is designed as an extension point for additional authentication mechanisms in the future.
gousteris
force-pushed
the
gateway-hmac-auth
branch
from
August 5, 2026 08:54
211e9c1 to
8d44bd6
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds an optional auth.hmac config block to the gateway input that authenticates incoming requests by verifying a hex-encoded HMAC signature (SHA-256 or SHA-512) of the raw request body against a shared secret, read from a configurable request header. When set it replaces the platform-managed JWT/RBAC authentication for the endpoint, supporting webhook-style callers that sign their payloads instead of presenting a bearer token (e.g. Terraform Cloud Run Tasks).
The auth block is designed as an extension point for additional authentication mechanisms in the future.
jira: DEVPROD-4607