Home > Blockchain >  The Cloud Resume Challenge - S3 Bucket creation
The Cloud Resume Challenge - S3 Bucket creation

Time:10-28

I am working on the cloud resume challenge by Forrest Brazeal. I am trying to deploy S3 using SAM. But when I run aws-vault exec 'user' --no-session -- sam deploy, I am encountering the following error. enter image description here

CodePudding user response:

AWS S3 Bucket names are set globally, meaning that, for example, in your case, someone else has set my-fantastic-website as their bucket name in a different AWS Account. Bucket names HAVE to be unique

You can solve your problem by changing your bucket name to something unique, maybe adding a random number at the end or just your name

  • Related