Skip to content

Commit 5e41d2e

Browse files
committed
fix: add new AWS region ap-southeast-7 to publish
Signed-off-by: Varsha GS <[email protected]>
1 parent 254e6a5 commit 5e41d2e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bin/aws-lambda/build_and_publish_lambda_layer.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
os.chdir(os.getcwd() + "/build/lambda/")
7474
call(["zip", "-q", "-r", zip_filename, "./python", "-x", "*.pyc", "./python/pip*", "./python/setuptools*", "./python/wheel*"])
7575

76-
fq_zip_filename = os.getcwd() + zip_filename
76+
fq_zip_filename = os.getcwd() + "/" + zip_filename
7777
aws_zip_filename = f"fileb://{fq_zip_filename}"
7878
print("Zipfile should be at: ", fq_zip_filename)
7979

@@ -99,6 +99,7 @@
9999
'ap-southeast-3',
100100
'ap-southeast-4',
101101
'ap-southeast-5',
102+
'ap-southeast-7',
102103
'ca-central-1',
103104
'ca-west-1',
104105
'cn-north-1',

0 commit comments

Comments
 (0)