Maestro v2.0.0-beta.10 Release Notes

Release Date: 2020-05-18 // almost 4 years ago
  • 🚀 This release includes a new feature params. You are now able to set params without affecting a request body. Params could be used by transport implementations to set transport specific values.

    proxy "Logs" { input { header = ["Authorization"] params = "com.maestro.LogParams" } resource "policy" { request "com.maestro.Projects" "HasReadAccess" { header { Authorization = "{{ input.header:Authorization }}" } params { project\_id = "{{ input:project }}" } } } forward "com.maestro.Logs" {} }