AWS vpc-lattice documentation change
Summary
Added 'algorithm' parameter to sigV4Sign examples in code snippets for both SIGv4 and SIGv4A authentication methods
Security assessment
The change updates code examples to include the algorithm parameter in SigV4 authentication calls. While SigV4 is a security feature, there's no evidence this change addresses a specific vulnerability - it appears to be a documentation improvement for proper usage.
Diff
diff --git a/vpc-lattice/latest/ug/sigv4-authenticated-requests.md b/vpc-lattice/latest/ug/sigv4-authenticated-requests.md index 36d78b224..14eb35e9b 100644 --- a/vpc-lattice/latest/ug/sigv4-authenticated-requests.md +++ b/vpc-lattice/latest/ug/sigv4-authenticated-requests.md @@ -324 +324 @@ SIGv4 - sigV4Sign('GET', process.argv[2], 'vpc-lattice-svcs').then( + sigV4Sign('GET', process.argv[2], 'vpc-lattice-svcs', algorithm).then( @@ -386 +386 @@ SIGv4A - sigV4Sign('GET', process.argv[2], 'vpc-lattice-svcs').then( + sigV4Sign('GET', process.argv[2], 'vpc-lattice-svcs', algorithm).then(