Skip to content

Commit f4b40b5

Browse files
committed
readme
1 parent 8f83566 commit f4b40b5

File tree

3 files changed

+107
-70
lines changed

3 files changed

+107
-70
lines changed

1-create-bucket.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
set -eo pipefail
33
BUCKET_ID=$(dd if=/dev/random bs=8 count=1 2>/dev/null | od -An -tx1 | tr -d ' \t\n')
4-
BUCKET_NAME=lambda-artifacts-$BUCKET_ID
4+
BUCKET_NAME=beanstalk-artifacts-$BUCKET_ID
55
echo $BUCKET_NAME > bucket-name.txt
66
aws s3 mb s3://$BUCKET_NAME

3-open-website.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash
22
set -eo pipefail
33
ENDPOINT=$(aws cloudformation describe-stacks --stack-name scorekeep --query Stacks[0].Outputs[0].OutputValue --output text)
4-
echo $ENDPOINT
4+
echo http://$ENDPOINT

0 commit comments

Comments
 (0)