Skip to content

Commit 2fed3b9

Browse files
John PeurifoyJohn Peurifoy
John Peurifoy
authored and
John Peurifoy
committedMay 9, 2022
Commit - adding basic python function and app setup
1 parent 98e30c3 commit 2fed3b9

6 files changed

+96
-0
lines changed
 

‎.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
build/
2+
cdk.out/
3+
# Mac Files
4+
*.DS_Store

‎README.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# CDK-Lambda-Python-With-Requirements
2+
3+
Project template to show how to use CDK to create a basic lambda function with some pip/python requirements.
4+
5+
## Deployment Instructions
6+
7+
1. `docker run --rm --volume=$(pwd):/lambda-build -w=/lambda-build lambci/lambda:build-python3.8 pip install -r requirements-layer.txt --target build/python`
8+
2. `cdk synth`
9+
3. `cdk deploy`
10+
11+
## Testing
12+
13+
Go to the AWS console and hit `test`!

‎app.py

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
"""Main entrance for AWS CDK deployment.
2+
Deploys a sample script with python dependencies to lambda.
3+
4+
BEFORE RUNNING THIS, make sure to create the `build` dependency folder. To do this:
5+
docker run --rm --volume=$(pwd):/lambda-build -w=/lambda-build lambci/lambda:build-python3.8 pip install -r requirements-layer.txt --target build/python
6+
"""
7+
8+
from aws_cdk import (
9+
aws_ec2 as ec2,
10+
aws_events as events,
11+
aws_lambda as lambda_,
12+
aws_events_targets as targets,
13+
App, Duration, Environment, Stack
14+
)
15+
16+
17+
# External resources that this app depends on.
18+
AWS_ACCOUNT_ID = '<>'
19+
AWS_REGION = 'eu-west-2'
20+
21+
22+
class LambdaCronStack(Stack):
23+
def __init__(self, app: App, id: str, **kwargs) -> None:
24+
super().__init__(app, id, **kwargs)
25+
26+
with open("lambda-handler.py", encoding="utf8") as fp:
27+
handler_code = fp.read()
28+
29+
lambdaLayer = lambda_.LayerVersion(
30+
self,
31+
'lambda-layer-dependencies-template',
32+
code = lambda_.Code.from_asset("build/"),
33+
compatible_runtimes = [lambda_.Runtime.PYTHON_3_8],
34+
)
35+
36+
lambdaFn = lambda_.Function(
37+
self, "template-lambda",
38+
code=lambda_.InlineCode(handler_code),
39+
handler="index.lambda_handler",
40+
timeout=Duration.seconds(900),
41+
layers = [lambdaLayer],
42+
runtime=lambda_.Runtime.PYTHON_3_8,
43+
)
44+
45+
rule = events.Rule(
46+
self, "Rule",
47+
schedule=events.Schedule.rate(Duration.minutes(5)),
48+
)
49+
rule.add_target(targets.LambdaFunction(lambdaFn))
50+
51+
52+
app = App()
53+
LambdaCronStack(app, "Template-Lambda", env=Environment(account=AWS_ACCOUNT_ID, region=AWS_REGION))
54+
app.synth()

‎cdk.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"app": "python3 app.py"
3+
}

‎lambda-handler.py

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
"""Basic function to simulate an import of an external library
2+
and a call to it.
3+
"""
4+
import requests
5+
import json
6+
7+
8+
def lambda_handler(event, context):
9+
"""Handler to clear all records from redis.
10+
"""
11+
print(f"Lambda handler called, calling reuqests now.")
12+
13+
r = requests.get('https://www.google.com')
14+
15+
print(r)
16+
print(r.content)
17+
18+
return {
19+
'statusCode': 200,
20+
'body': json.dumps(str(r.content))
21+
}

‎requirements-layer.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
requests

0 commit comments

Comments
 (0)
Please sign in to comment.