aws-samples / aws-modern-application-workshop

A tutorial for developers that want to learn about how to build modern applications on top of AWS. You will build a sample website that leverages infrastructure as code, containers, serverless code functions, CI/CD, and more.
Apache License 2.0
1.46k stars 832 forks source link

Insert bash code #275

Closed hammytheham closed 3 years ago

hammytheham commented 3 years ago

On the work through https://aws.amazon.com/getting-started/hands-on/build-modern-app-fargate-lambda-dynamodb-python/module-five/

In the line 'First, use the AWS CLI to create a new S3 bucket where our Lambda function code packages will be uploaded to. S3 bucket names need to be globally unique among all AWS customers, so replace the end of this bucket name with a string that's unique to you:'

This could do with a copyable bit of bash code. i.e.

aws s3 mb s3://REPLACE_YOUR_NEW_BUCKET

I know it was used earlier but would just make life easier to progress through the exercise and more consistent with the rest of the well documented example.

EDIT: Upon reflection makebucket is something quite basic you learn in module one. Up to you, I was just a little perplexed with the instruction and trying to remember.