Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jason-dour/pysnmp-aws-lambda-layer
AWS Lambda Layer for Python PySNMP module.
https://github.com/jason-dour/pysnmp-aws-lambda-layer
aws aws-lambda aws-lambda-layer aws-lambda-layers cloud lambda lambda-layer lambda-layers python snmp
Last synced: 2 months ago
JSON representation
AWS Lambda Layer for Python PySNMP module.
- Host: GitHub
- URL: https://github.com/jason-dour/pysnmp-aws-lambda-layer
- Owner: jason-dour
- License: bsd-2-clause
- Created: 2020-01-15T22:20:30.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-15T01:31:16.000Z (over 3 years ago)
- Last Synced: 2024-08-02T06:14:27.818Z (5 months ago)
- Topics: aws, aws-lambda, aws-lambda-layer, aws-lambda-layers, cloud, lambda, lambda-layer, lambda-layers, python, snmp
- Language: Shell
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-layers - `jason-dour/pysnmp-aws-lambda-layer`
README
# pysnmp-aws-lambda-layer
AWS Lambda Layer for Python PySNMP module.
## Why SNMP?!
Because.
To be more clear: because I needed it as a cloud guy who works hard to integrate on-premises infrastructure with cloud. And SNMP is a reasonable way for a Lambda to extract information from decades of existing on-premises infrastructure.
This is why SNMP. :)
## Building the Layers
1. Confirm the build directory is clean.
``` shell
$ ls -1 build
build-pysnmp.sh
```2. Then execute the docker `public.ecr.aws/lambda/python` images to run the build script.
``` shell
docker run --rm -v `pwd`/build:/var/task -it --entrypoint /bin/bash public.ecr.aws/lambda/python:3.6 ./build-pysnmp.shdocker run --rm -v `pwd`/build:/var/task -it --entrypoint /bin/bash public.ecr.aws/lambda/python:3.7 ./build-pysnmp.sh
docker run --rm -v `pwd`/build:/var/task -it --entrypoint /bin/bash public.ecr.aws/lambda/python:3.8 ./build-pysnmp.sh
docker run --rm -v `pwd`/build:/var/task -it --entrypoint /bin/bash public.ecr.aws/lambda/python:3.9 ./build-pysnmp.sh
```## Deploy the Layers
Once the layer zip files are created, you can deploy them to your AWS account with the following command:
``` shell
aws lambda publish-layer-version --layer-name "pysnmp-python36" --description "PySNMP Module for Python 3.6 Runtime" --license-info "BSD-2-Clause" --compatible-runtimes "python3.6" --zip-file "fileb://build/pysnmp-python3.6.zip"aws lambda publish-layer-version --layer-name "pysnmp-python37" --description "PySNMP Module for Python 3.7 Runtime" --license-info "BSD-2-Clause" --compatible-runtimes "python3.7" --zip-file "fileb://build/pysnmp-python3.7.zip"
aws lambda publish-layer-version --layer-name "pysnmp-python38" --description "PySNMP Module for Python 3.8 Runtime" --license-info "BSD-2-Clause" --compatible-runtimes "python3.8" --zip-file "fileb://build/pysnmp-python3.8.zip"
aws lambda publish-layer-version --layer-name "pysnmp-python39" --description "PySNMP Module for Python 3.9 Runtime" --license-info "BSD-2-Clause" --compatible-runtimes "python3.9" --zip-file "fileb://build/pysnmp-python3.9.zip"
```