Skip to content

Commit a839736

Browse files
author
Joe Snell
committed
cleanup
1 parent 88f3a06 commit a839736

File tree

9 files changed

+12
-0
lines changed

9 files changed

+12
-0
lines changed

python/example/README.md

Whitespace-only changes.

python/example/deploy.sh

Whitespace-only changes.

python/example/src/main.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import json
2+
import os
3+
4+
def handler(event, context):
5+
print(os.path.exists('/tmp/parameter-store'))
6+
with open('/tmp/parameter-store/secret.json', mode='r') as f:
7+
print(f.read())
8+
9+
return {
10+
'statusCode': 200,
11+
'body': json.dumps('Hello from Lambda!')
12+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)