diff --git a/packages/@aws-cdk/aws-apigatewayv2-authorizers/test/websocket/integ.iam.ts b/packages/@aws-cdk/aws-apigatewayv2-authorizers/test/websocket/integ.iam.ts index a03f960c87116..281268ab6bee8 100644 --- a/packages/@aws-cdk/aws-apigatewayv2-authorizers/test/websocket/integ.iam.ts +++ b/packages/@aws-cdk/aws-apigatewayv2-authorizers/test/websocket/integ.iam.ts @@ -59,16 +59,3 @@ new cdk.CfnOutput(stack, 'TESTREGION', { }); app.synth(); - -/* - * Stack verification steps: - * * Get cURL version 7.75.0 or later so you can use the --aws-sigv4 option - * * Curl /foo without sigv4 and expect a 403 - * * Curl /books/something without sigv4 and expect a 403 - * * Curl /foo with sigv4 from the authorized user and expect 200 - * * Curl /books/something with sigv4 from the authorized user and expect 200 - * - * Reference: - * * Using cURL 7.75.0 or later via the official docker image: docker run --rm curlimages/curl -s -o/dev/null -w"%{http_code}" - * * Args to enable sigv4 with authorized credentials: --user "$TESTACCESSKEYID:$TESTSECRETACCESSKEY" --aws-sigv4 "aws:amz:$TESTREGION:execute-api" - */