workshop-copilot
workshop-copilot copied to clipboard
Lab 3: S3 Bucket Name is Not Unique
Task 5 of Lab 3 suggests that the bucket be named s3-pdf-requests
. When concatenated with the application name and environment name specified earlier, this does not result in a globally unique name. I personally executed:
"s3-pdf-requests-" + [Guid]::NewGuid().ToString().Substring(0,8)
in PowerShell, but figured that you may have a more elegant solution in mind, so thought that I'd highlight this. Sorry that I forgot to point this one out yesterday!