Cloudformation => Creating Authorizer to a ApiGateaway with Cloudformation => Error with JWTConfiguration when creating the authorizer

0

Creating a Gateaway API via AWS Cloudformation I have a problem with JWTConfiguration when creating the authorizer.

Authorizer:
   Type: 'AWS::ApiGatewayV2::Authorizer'
   Properties:
     Name: VSTORES_Api_CognitoAuthorizer
     ApiId:  zzzzzzzzzzzz
     AuthorizerType: JWT
     IdentitySource: 
       - '$request.header.Authorization'
     AuthorizerResultTtlInSeconds: 3600
     JWTConfiguration:
       Audience: 
         - xxxxxxxxxxxxxxxxxxxxx
       Issuer: https://cognito-idp.us-east-1.amazonaws.com/us-east-xxxxxxx

I get the following error:

Property validation failure: [Encountered unsupported properties in {/}: [JWTConfiguration]]

what am I doing wrong?

PD: Obviously xxxxx and zzzz are valid values. :)

2 Answers
2
Accepted Answer

Hi, @Mariano Gomez Bidondo

Some of your property names are in the upper case.

  • Incorrect: JWTConfiguration
  • Correct: JwtConfiguration
profile picture
EXPERT
iwasa
answered 2 years ago
0

Thanks a lot!

answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions