mattclay.aws.lambda_package (4.0.1) — module

Package files in a ZIP archive for deployment as Lambda functions

Authors: Matt Clay (@mattclay) <matt@mystile.com>

Install collection

Install with ansible-galaxy collection install mattclay.aws:==4.0.1


Add to requirements.yml

  collections:
    - name: mattclay.aws
      version: 4.0.1

Description

Package files in a ZIP archive for deployment as Lambda functions.


Requirements

Inputs

    
src:
    description:
    - Path to the source files to package.
    required: true
    type: path

dest:
    description:
    - Path to the package that should be created.
    required: true
    type: path

rename:
    description:
    - Mapping of files that should be renamed in the package.
    type: dict

exclude:
    description:
    - A list of patterns to exclude from the package.
    elements: str
    type: list

include:
    description:
    - A list of patterns to include in the package.
    elements: str
    type: list