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 Respostas
2
Resposta aceita

Hi, @Mariano Gomez Bidondo

Some of your property names are in the upper case.

  • Incorrect: JWTConfiguration
  • Correct: JwtConfiguration
profile picture
ESPECIALISTA
iwasa
respondido há 2 anos
0

Thanks a lot!

respondido há 2 anos

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas