We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc6de39 commit 085d6b3Copy full SHA for 085d6b3
.github/workflows/newaws.yml
@@ -10,7 +10,8 @@ env:
10
PYTHON_VERSION: 3.11
11
AWS_REGION: us-east-1
12
ECR_REPOSITORY: meta/hello-world
13
- LAMBDA_FUNCTION_NAME: lamdanew2234
+ LAMBDA_FUNCTION_NAME: python-app
14
+
15
permissions:
16
id-token: write
17
contents: read
app.py
@@ -4,7 +4,7 @@ def hello(event, context):
4
return {
5
'statusCode': 200,
6
'body': json.dumps({
7
- 'message': 'Hello Lambda!',
+ 'message': 'Hello Lambda!!',
8
'version': '1.0'
9
})
}
0 commit comments