top of page

    Learn AI Development on AWS

    • elaineyunruchan
    • Jan 12
    • 2 min read

    Updated: Jan 21


    Hints


    Unlocking the Toolbox

    The answer is a resource on AWS. Make sure that there are no spaces in your answer.


    Open me if you're still stuck 🤪



    Getting the Machine Part

    Make sure you've got 5 active connections in total. Take note of the letters in appearance. Did you notice that the first letter is different from the second letter?

    Open me if you're still stuck 🤪


    Finding the Magic Word

    Steps to create the S3 bucket

    1. Create an s3 bucket

    2. Unblock all public access

    3. Edit the bucket policy to have read/write permissions

    {
    	"Version": "2012-10-17",
    	"Statement": [
    		{
    			"Sid": "ReadWrite",
    			"Principal": "*",
    			"Effect": "Allow",
    			"Action": [
    				"s3:ListBucket",
    				"s3:PutObject"
    			],
    			"Resource": "<your-bucket-arn>"
    		}
    	]
    }
    1. Use the `cp` command to copy everything from s3://theawscloudconjurer-elainechan01 to your newly created bucket

    aws s3 cp s3://theawscloudconjurer-elainechan01 s3://your-new-bucket-name --recursive
    1. Look for the file called magic_word. Enter the path as the answer e.g., foldername/foldername

    Open me if you're still stuck 🤪



    Preparing the Dataset

    1. Card 1: Look back into your newly created bucket on AWS. Watch out, there's a ticking time bomb

    2. Card 2: Cosmos & Comets; Stars & Sunshine

    3. Card 3: What marks the spot? Try crossing them out.

    4. Card 4: What's missing?

      1. Coma ,

      2. Coln :

      3. Perid .

    Open me if you want to see the answer 🤪



    Getting the Tune


    Open me if you want to see the answer 🤪


    Comments


    bottom of page