Dipping toes in AWS via Rails Tutorial Sample App

At the end of it all, though, a developer has to roll up their sleeves and dive in. The question then is: where? In previous times, I couldn't make up my mind and got stuck. This time around, I have a starting point: Michael Hartl's Ruby on Rails Tutorial sample app, which wants to store images on Amazon S3 (Simple Storage Service).
Let's make it happen.
One option is to blaze the simplest, most direct path to get rolling, but I resisted. The example I found on stackoverflow.com granted the rails app full access to storage with my AWS root credentials. Functionally speaking that would work, but that is a very bad idea from a security practices standpoint.
So I took a detour through Amazon IAM (Identity and Access Management). I wanted to learn how to do a properly scoped security access scheme for the Rails sample app, rather than giving it the Golden Key to the entire kingdom. Unfortunately, since IAM is used to manage access to all AWS properties, it is a pretty big ball of yarn itself.
Eventually I found my on-ramp to AWS: A section in the S3 documentation that discussed access control via IAM. Since I control the rails app and my own AWS account, I was able to skip a lot of the cross-account management for this first learning pass, boiling it down to the basics of what I can do for myself to implement IAM best practices on S3 access for my Rails app.
After a few bumps in the exploration effort, here's what I ended up with.
Root account: This has access to everything, so we want to use this account as little as possible to minimize risk of compromising this account. Login to this account just long enough to activate multi-factor authentication and create an IAM user account with "AdministratorAccess" privileges. Log out of the management console as root, log back in under the new admin account to do everything else.
Admin account: This account is still very powerful so it is still worth protecting. But if it should be compromised, it can at least be shut down without closing the whole Amazon account. (If root is compromised, all bets are off.) Use this account to set up the remaining items.
Storage bucket: While logged in as the admin account, go to the S3 service dashboard and create a new storage bucket.
Access policy: Go to the IAM dashboard and create a new S3 access policy. The "resource" of the policy is the storage bucket we just created. The "action" we allow are the minimum set needed for the rails sample app and no more.
- PutObject - this permission allows the rails app to upload the image file itself.
- PutObjectAcl - this permission allows the rails app to change the access permission on the image object, make the image publicly visible to the world. This is required for use as the source field of an HTML <img> tag in the rails app.
- DeleteObject - when a micropost is deleted, the app needs this permission so the corresponding image can be deleted as well.
Access group: From the IAM dashboard, create a new access group. Under the "Permissions" list of the group, attach the access policy we just created. Now any account which is a member of the group has enough access the storage bucket to run the rails sample app.
User: From the IAM dashboard, create a new user account to be used by the rails app. Add this newly user to the access group we just created, so it is a part of the group and can use the access policy we created. (And no more.)
This new user, which we granted only a low level of access, will not need a password since we'll never log in to Amazon management console with it. But we will need to generate an app access key and secret key.
Once all of the above are done, we have everything we need to put into Heroku for the Rails Tutorial sample app. A S3 storage bucket name, plus the access and secret key of the low level user account we created to access that S3 storage bucket.
While this is far more complex than the stackoverflow.com answer, it is more secure. Plus a good exercise to learn the major bits and pieces of an AWS access control system.
The above steps will ensure that, if the Rails sample app should be compromised in any way, the hacker has only the permissions we granted to the app and no more. While the hacker can put new images on the S3 bucket and make them visible, or delete existing images, but they can't do anything else in that S3 bucket.
And most importantly, the hacker has no access to any other part of my AWS account.