We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52c5956 commit 57ac642Copy full SHA for 57ac642
sample-apps/blank-python/1-create-bucket.sh
@@ -1,5 +1,5 @@
1
#!/bin/bash
2
-# BUCKET_ID=$(dd if=/dev/random bs=8 count=1 2>/dev/null | od -An -tx1 | tr -d ' \t\n')
3
-# BUCKET_NAME=lambda-artifacts-$BUCKET_ID
4
-# echo $BUCKET_NAME > bucket-name.txt
5
-# aws s3 mb s3://$BUCKET_NAME
+BUCKET_ID=$(dd if=/dev/random bs=8 count=1 2>/dev/null | od -An -tx1 | tr -d ' \t\n')
+BUCKET_NAME=lambda-artifacts-$BUCKET_ID
+echo $BUCKET_NAME > bucket-name.txt
+aws s3 mb s3://$BUCKET_NAME
0 commit comments