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 Risposte
2
Risposta accettata

Hi, @Mariano Gomez Bidondo

Some of your property names are in the upper case.

  • Incorrect: JWTConfiguration
  • Correct: JwtConfiguration
profile picture
ESPERTO
iwasa
con risposta 2 anni fa
0

Thanks a lot!

con risposta 2 anni fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande