File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ A Varnish VMOD for invoking AWS Lambda functions from VCL. Built using varnish-r
44
55## Overview
66
7- This VMOD allows Varnish to invoke AWS Lambda functions as if they were backends.
7+ This VMOD allows Varnish to invoke AWS Lambda functions directly, and exposes them as backends.
88
99## Building
1010
Original file line number Diff line number Diff line change @@ -26,9 +26,6 @@ pub mod lambda_private {
2626 use varnish:: ffi:: { BS_NONE , VRB_Iterate , ObjIterate } ;
2727
2828 /// Build a Lambda client with the specified configuration
29- ///
30- /// For mock/test endpoints, uses dummy credentials.
31- /// For production, uses credentials from the environment.
3229 pub async fn build_lambda_client ( region : Region , endpoint_url : Option < String > ) -> LambdaClient {
3330 let sdk_config = if endpoint_url. is_some ( ) {
3431 // Custom endpoint configuration: use credentials from environment if available
You can’t perform that action at this time.
0 commit comments