Created
April 10, 2022 07:00
-
-
Save chandradeoarya/0950ce4deb4c4e7678c6336858c1348d to your computer and use it in GitHub Desktop.
This lambda function will return the list of devops topics.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import os | |
def lambda_handler(event, context): | |
# print (event) | |
statusCode = 200 | |
return { | |
"statusCode": statusCode, | |
"body": json.dumps(["ansible", "jenkins", "docker", "k8s"]), | |
"headers": { | |
"Content-Type": "application/json" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment