Skip to content

Instantly share code, notes, and snippets.

@derekargueta
Created June 6, 2020 23:44
Show Gist options
  • Save derekargueta/e710cf4e5a1ffcc82c43e75856f402e3 to your computer and use it in GitHub Desktop.
Save derekargueta/e710cf4e5a1ffcc82c43e75856f402e3 to your computer and use it in GitHub Desktop.
Envoy Lua filter config
http_filters:
- name: envoy.filters.http.lua
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.lua.v3.Lua
inline_code: '
function envoy_on_request(request_handle)
request_handle:respond(
{[":status"] = "200"},
"hello world")
end
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment