Skip to content

Commit 72b7791

Browse files
pvitalGSVarsha
authored andcommitted
chore: Print the AWS Lambda layer list as MD.
Signed-off-by: Paulo Vital <[email protected]>
1 parent 7c76bdb commit 72b7791

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

bin/aws-lambda/build_and_publish_lambda_layer.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@
149149
LAYER_NAME = "instana-python"
150150

151151
published = dict()
152+
version = 0
152153

153154
for region in target_regions:
154155
print(f"===> Uploading layer to AWS {region} ")
@@ -219,5 +220,8 @@
219220

220221

221222
print("===> Published list:")
223+
print(f"AWS Lambda Layer v{version}")
224+
print("| AWS Region | ARN |")
225+
print("| :-- | :-- |")
222226
for key in published.keys():
223-
print(f"{key}\t{published[key]}")
227+
print(f"| {key} | {published[key]} |")

0 commit comments

Comments
 (0)