From 013d48a033db3a5978b46723661b338847966032 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pa=C5=ADlo=20Ebermann?= Date: Wed, 14 Aug 2024 14:33:34 +0200 Subject: [PATCH] Fix list formatting in filters.md The Markdown processor used on the reference docs (e.g. https://opensource.zalando.com/skipper/reference/filters/#awssigv4) requires an empty line before a list to recognize it as such (and not have the content part of the paragraph before it). This adds two such line breaks. (The difference is not visible on the Github preview, as its processor doesn't require the empty line.) Signed-off-by: Paul Ebermann --- docs/reference/filters.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/reference/filters.md b/docs/reference/filters.md index 7ef280f97e..2a2f223fc3 100644 --- a/docs/reference/filters.md +++ b/docs/reference/filters.md @@ -2081,6 +2081,7 @@ The filter also honors the `skip-request-body-parse` of the corresponding [confi ### awsSigv4 This filter signs request using [AWS Sig V4](https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html_) algorithm. The requests must provide following headers in order for this filter to generate a valid signature. + - `x-amz-accesskey` header must contain a valid AWS access key - `x-amz-secret` header must contain a valid secret for AWS client being used. - `x-amz-time` header must contain the time in RFC3339 format which this filter can use to generate signature and `X-Amz-Date` header on signed request. This time stamp is considered as the time stamp of generated signature. @@ -2093,7 +2094,8 @@ awsSigv4 filter can be defined on a route as `awsSigv4(", "", < An example of route with awsSigv4 filter is `editorRoute: * -> awsSigv4("dynamodb" , "us-east-1", false, false, false) -> "https://dynamodb.us-east-1.amazonaws.com";` -This filter expects +This filter expects: + - `Service` An aws service name. Please refer valid service names from service endpoint. For example if service endpoint is https://dynamodb.us-east-1.amazonaws.com, then service is dynamodb