aboutsummaryrefslogtreecommitdiffhomepage
path: root/dhall/server/service/plugin/CorrelationId.dhall
diff options
context:
space:
mode:
authorPaul Bonaud <paul.bonaud@fretlink.com>2019-08-08 15:51:47 +0200
committerPaul Bonaud <paul.bonaud@fretlink.com>2019-08-08 15:51:47 +0200
commit42e5588b7feb13e90964b5371fb9f1bdcfaf793a (patch)
tree6aefb077fc07a715edb478cef3e8fc3a24e3a45c /dhall/server/service/plugin/CorrelationId.dhall
parentf820c109a54ea5c09fcff01025ba3ab63f18912c (diff)
downloadansible-kong-app-42e5588b7feb13e90964b5371fb9f1bdcfaf793a.tar.gz
ansible-kong-app-42e5588b7feb13e90964b5371fb9f1bdcfaf793a.tar.zst
ansible-kong-app-42e5588b7feb13e90964b5371fb9f1bdcfaf793a.zip
config(dhall): add parameter 'generator' to CorrelationID plugin
This PR adds possibility to define a custom `generator` to use in the CorrelationID plugin. The default value ("uuid#counter") is taken from Kong directly https://docs.konghq.com/hub/kong-inc/correlation-id/#parameters
Diffstat (limited to 'dhall/server/service/plugin/CorrelationId.dhall')
-rw-r--r--dhall/server/service/plugin/CorrelationId.dhall26
1 files changed, 19 insertions, 7 deletions
diff --git a/dhall/server/service/plugin/CorrelationId.dhall b/dhall/server/service/plugin/CorrelationId.dhall
index 655cd8d..fc69f4f 100644
--- a/dhall/server/service/plugin/CorrelationId.dhall
+++ b/dhall/server/service/plugin/CorrelationId.dhall
@@ -2,10 +2,22 @@ let Plugin = ./Plugin.dhall
2 2
3let config = ./Config.dhall 3let config = ./Config.dhall
4 4
5in { name = 5in λ(generator : Optional Text)
6 "correlation-id" 6 → { name =
7 , config = 7 "correlation-id"
8 config.CorrelationId 8 , config =
9 { header_name = "X-correl", echo_downstream = True } 9 config.CorrelationId
10 } 10 { header_name =
11 : Plugin 11 "X-correl"
12 , echo_downstream =
13 True
14 , generator =
15 Optional/fold
16 Text
17 generator
18 Text
19 (λ(t : Text) → t)
20 "uuid#counter"
21 }
22 }
23 : Plugin