I'm using CloudFormation to manage a Tomcat webserver stack but am tired of doing raw AMI management for new application versions. I'd like to move in the direction of Chef but don't have the time right now. Instead, I'm trying to conquer a simple problem in webserver instantiation: How can I download a "current" WAR when new machines spin-up?
My thought was to utilize a private S3 bucket and cloudinit, but I'm a little stumped by what to do with IAM credentials. I could put them in the template's user data, but I'm loathe to do so, particularly because I'm version controlling that file. The only alternative I can think of is to use environment variables in the AMI itself. They'd have to be plaintext, but... eh, if you can break into my instance, you could zip up and download my entire webserver. As long as the IAM user isn't reused for anything else and is rotated regularly, it seems like a reasonable way to solve the problem. Am I missing anything? How can I securely download a private S3 asset using cloudinit?
An instance with an IAM Role has temporary security credentials that are automatically rotated. They're available via http at
http://169.254.169.254/latest/meta-data/iam/security-credentials/RoleName
, where RoleName is whatever you called your role. So they're easy to get from your instance, but they expire regularly.Using them is a bit tough. CloudFormation can't use temporary credentials directly. The Amazon Linux AMI has Python boto installed, and it's now smart enough to find and use those credentials for you automatically. Here's a one-liner you can put in a script to fetch a file from S3 bucket b, key k to local file f:
boto finds and uses the role's temporary credentials for you, which makes it really easy to use.
To securely download a private S3 asset onto a new EC2 instance, you should use IAM Roles for EC2 to grant the necessary S3 permission to your EC2 instance, then call
aws s3 cp
in your instance's UserData cloudinit script to download the asset.To setup an IAM Role for EC2 from a CloudFormation template, use the
AWS::IAM::InstanceProfile
resource, referencing anAWS::IAM::Role
resource with anAssumeRolePolicyDocument
delegating access toec2.amazonaws.com
, with a Policy designed to grant least privilege (in this case, allowing's3:GetObject'
only for the specific S3 asset being downloaded).Here's a full example template that downloads an S3 asset onto a new EC2 instance using cloudinit, returning its contents as a Stack Output:
To update the answers to this question a bit:
Along with IAM roles, the new AWS command-line client makes fetching these assets trivial. It will automatically pull AWS credentials bestowed via IAM from the environment and handle the refreshing of those credentials.
Here's an example of fetching a single asset from a secure S3 bucket in a user-data script:
Simple as that. You can also copy entire directory contents from S3 and uploaded, etc. See the reference material for more details and options.
Amazon recently announced a new feature where you can give "IAM roles" to your EC2 instances. This makes it fairly easy to allow specific instances to have permission to read specific S3 resources.
Here's their blog post announcing the new feature:
http://aws.typepad.com/aws/2012/06/iam-roles-for-ec2-instances-simplified-secure-access-to-aws-service-apis-from-ec2.html
Here's the section in the EC2 documentation:
http://docs.amazonwebservices.com/AWSEC2/latest/UserGuide/UsingIAM.html#UsingIAMrolesWithAmazonEC2Instances
Here's the section in the IAM documentation:
http://docs.amazonwebservices.com/IAM/latest/UserGuide/WorkingWithRoles.html
IAM roles make the credentials available to the instance through HTTP, so any users or processes running on the instance can see them.