Proxy forward
This is currently a experimental feature and might change in the future.
Introduction
Proxy forwarding allows the entire request to be forwarded to other services. A proxy forward is unable to switch protocol and forwards the entire request body to the targeted service. Requests could be made before forwarding a request. The input body could not be used in any of the configured resources.
Check out the hubs example inside the git repo.
proxy "forward" {
resource "authenticate" {
request "auth" "User" {
}
}
forward "hub" {
}
}

Last updated