diff options
author | Paul Bonaud <paul.bonaud@fretlink.com> | 2019-04-04 12:21:12 +0200 |
---|---|---|
committer | Paul Bonaud <paul.bonaud@fretlink.com> | 2019-04-04 12:21:12 +0200 |
commit | 9020cc32a5764ae262ab361d14a1afc4a8914603 (patch) | |
tree | cd70a84ef8723221216d17c8e07f1da5c3e9df3d /dhall | |
parent | 66401fc939cd73628561d4832c3e219f0b44d8de (diff) | |
download | ansible-kong-app-9020cc32a5764ae262ab361d14a1afc4a8914603.tar.gz ansible-kong-app-9020cc32a5764ae262ab361d14a1afc4a8914603.tar.zst ansible-kong-app-9020cc32a5764ae262ab361d14a1afc4a8914603.zip |
dhall(fix): fix for generated configuration for Kong 1.x upgrade
Diffstat (limited to 'dhall')
-rw-r--r-- | dhall/server/service/plugin/Config.dhall | 10 | ||||
-rw-r--r-- | dhall/server/service/plugin/mkRequestTransformer.dhall | 16 |
2 files changed, 13 insertions, 13 deletions
diff --git a/dhall/server/service/plugin/Config.dhall b/dhall/server/service/plugin/Config.dhall index 73a333f..d54436b 100644 --- a/dhall/server/service/plugin/Config.dhall +++ b/dhall/server/service/plugin/Config.dhall | |||
@@ -1,9 +1,9 @@ | |||
1 | < CorrelationId : | 1 | < CorrelationId : |
2 | { header_name : Text, echo_downstream : Bool } | 2 | { header_name : Text, echo_downstream : Bool } |
3 | | RequestTransformer : | 3 | | RequestTransformer : |
4 | { `add.headers` : Text } | 4 | { add : { headers : List Text } } |
5 | | RequestTermination : | 5 | | RequestTermination : |
6 | { status_code : Natural, content_type : Text, body : Text } | 6 | { status_code : Natural, content_type : Text, body : Text } |
7 | | IPRestriction : | 7 | | IPRestriction : |
8 | { whitelist : Text } | 8 | { whitelist : Text } |
9 | > | 9 | > \ No newline at end of file |
diff --git a/dhall/server/service/plugin/mkRequestTransformer.dhall b/dhall/server/service/plugin/mkRequestTransformer.dhall index 90789c8..1d8d608 100644 --- a/dhall/server/service/plugin/mkRequestTransformer.dhall +++ b/dhall/server/service/plugin/mkRequestTransformer.dhall | |||
@@ -1,11 +1,11 @@ | |||
1 | let Plugin = ./Plugin.dhall | 1 | let Plugin = ./Plugin.dhall |
2 | 2 | ||
3 | in let config = constructors ./Config.dhall | 3 | in let config = constructors ./Config.dhall |
4 | 4 | ||
5 | in λ(header : Text) | 5 | in λ(header : Text) |
6 | → { name = | 6 | → { name = |
7 | "request-transformer" | 7 | "request-transformer" |
8 | , config = | 8 | , config = |
9 | config.RequestTransformer { `add.headers` = header } | 9 | config.RequestTransformer { add = { headers = [ header ] } } |
10 | } | 10 | } |
11 | : Plugin | 11 | : Plugin \ No newline at end of file |