Giter VIP home page Giter VIP logo

Comments (6)

mildaniel avatar mildaniel commented on June 23, 2024 1

Hey @morgan-dgk, like you mentioned, resolving that intrinsic isn't something currently supported. It is probably a good idea to document which cases are/aren't supported like you mentioned. Let me bring this to the team to see what we can do.

from aws-sam-cli.

morgan-dgk avatar morgan-dgk commented on June 23, 2024 1

Ok, that seems to have fixed it. Thank you very much for your help.

from aws-sam-cli.

morgan-dgk avatar morgan-dgk commented on June 23, 2024

Just wondering if there are any suggested workarounds for this currently?

In my example, I would like to attach a Lambda Authorizer to a HTTP api using a lambda function defined in the SAM template like so:

LambdaAuthorizerFunc:
    Type: AWS::Serverless::Function
    Properties:
      Handler: src/layers/custom_auth/custom_auth.authorize
      Runtime: nodejs20.x
      Architectures:
        - x86_64
      MemorySize: 128
      Timeout: 100

  API:
    Type: AWS::Serverless::HttpApi
    Properties:
      Auth:
        Authorizers:
          LambdaAuthorizer:
            AuthorizerPayloadFormatVersion: 2.0
            FunctionArn: 
              !GetAtt:
                - LambdaAuthorizerFunc
                - ARN
            Identity:
              Headers:
                - "context" 

However, as !GetAtt does not correctly resolve, this fails.

from aws-sam-cli.

mildaniel avatar mildaniel commented on June 23, 2024

This case should already be supported. Can you try changing the

!GetAtt:
   - LambdaAuthorizerFunc
   - ARN

to

!GetAtt:
   - LambdaAuthorizerFunc
   - Arn

from aws-sam-cli.

morgan-dgk avatar morgan-dgk commented on June 23, 2024

This case should already be supported. Can you try changing the

!GetAtt:
   - LambdaAuthorizerFunc
   - ARN

to

!GetAtt:
   - LambdaAuthorizerFunc
   - Arn

Duh, apologies on my oversight. Debug log still shows this failing after correcting attribute name:

2024-05-01 14:37:15,549 | This Integration URI format is not supported: {'Fn::GetAtt:': ['LambdaAuthorizerFunc', 'Arn']}                                                                                             
2024-05-01 14:37:15,550 | Extracted Function ARN: None                                                                                                                                                               
2024-05-01 14:37:15,550 | Unable to parse the Lambda ARN for Authorizer 'LambdaAuthorizer', skipping   

from aws-sam-cli.

mildaniel avatar mildaniel commented on June 23, 2024

There also shouldn't be the colon after the !GetAtt (I missed that the first time). So it should be

!GetAtt
   - LambdaAuthorizerFunc
   - Arn

from aws-sam-cli.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.