This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* This algorithm is based off of the AWESOME gist by miguelmota: | |
https://gist.github.com/miguelmota/06f563756448b0d4ce2ba508b3cbe6e2 | |
However that code had two problems - | |
1) It used a deprecated jwt library (github.com/dgrijalva/jwt-go). The code below uses the current implementation at github.com/golang-jwt/jwt/v4 | |
2) The KeyFunc closure passed to jwt.Parse() always used the second JWK, even if the KID in the JWT header pointed to a different JWK. The code below finds the JWK for the KID specified in the header and verifies against that. | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AWSTemplateFormatVersion: '2010-09-09' | |
Transform: AWS::Serverless-2016-10-31 | |
Description: > | |
example-lambda-sns | |
Example CloudFormation template to subscribe a lambda to an SNS Topic. | |
Resources: | |
ExampleTopic: | |
Type: AWS::SNS::Topic | |
Properties: |