Why doesn't cloudformation support ZipFile inline code option for Python lambdas

0

The documentation for the ZipFile field in the AWS::Lambda::Function CloudFormation structure says that nodejs and Python are both supported. Copying the sample code for nodejs runtimes works just fine, but if you switch the Runtime to any Python runtime (Python3.7 up to Python3.11), the stack creation fails with:

Resource handler returned message: "Invalid request provided: The ZipFile attribute is not supported for the runtime 'Python3.7'" (RequestToken: <redacted>), HandlerErrorCode: InvalidRequest)

Is this an issue with the documentation (and Python runtimes no longer support inline ZipFile) or is there a defect in the CloudFormation process?

AWSTemplateFormatVersion: '2010-09-09'
Resources:
  primer:
      Type: AWS::Lambda::Function
      Properties:
        # Putting nodes18.x (instead of Python3.7, Python3.8, etc.) here works just fine..
        Runtime: Python3.7
        Role: !Sub "arn:aws:iam::${AWS::AccountId}:role/My_Role"
        Handler: index.handler
        Code:
          ZipFile: |
            def handler(event, context):
              return {'statusCode': 200, 'body': 'OK'}
        Description: List Amazon S3 buckets in us-east-1.
        TracingConfig:
          Mode: Active
demandé il y a 2 mois371 vues
1 réponse
2
Réponse acceptée

Hi there,

You might have a typo , you have Python3.7 also python3.7 is no longer supported, to view the supported run-times, check this here

This is a template I just tried with python3.8 and it worked HTH

AWS
jay-aws
répondu il y a 2 mois
profile picture
EXPERT
vérifié il y a 2 mois
profile pictureAWS
EXPERT
vérifié il y a 2 mois
  • Thank you so much for responding. That solved it! I wish the CF event errors were more descriptive. I jumped to python3.11.

  • Just for additional help, you could deploy cfn-lint that linter will pick up invalid values in your CFn template before you even deploy it. In this case it picked up the incorrect python in my IDE.

    https://github.com/aws-cloudformation/cfn-lint

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions