My fantasy is to be able to spin up a standard AMI, load a tiny script and end up with a properly configured server instance.

Part of this is that I would like to have a PRIVATE yum repo in S3 that would contain some proprietary code.

It seems that S3 wants you to either be public or use AMZN's own special flavor of authentication.

Is there any way that I can use standard HTTPS + either Basic or Digest auth with S3? I'm talking about direct references to S3, not going through a web-server to get to S3.

Thanks, Jeff

PS: if the answer is 'no', has anyone thought about adding AWS Auth support to yum?

link|improve this question

60% accept rate
Did you find a solution to this problem? I am facing similar problems myself. – cgbystrom Jun 7 '10 at 11:56
I have not. AWS has a proprietary auth scheme, and someone would need to implement it. Right now, I keep the private stuff separate and use s3curl to get it. I know, not ideal... – jeff7091 Jun 8 '10 at 6:30
feedback

3 Answers

up vote 1 down vote accepted

You can certainly use Amazon S3 to host a private Yum repository. Instead of fiddling with authentication, you could try a different route: limit access to your private S3 bucket by IP address. This is entirely supported, see the S3 documentation.

A second option is to use a Yum plug-in that provides the necessary authentication. Seems like someone already started working on such a plug-in: https://github.com/cgbystrom/yum-s3-plugin.

link|improve this answer
Considering the usage context (scripts spinning up new servers) I don't think that is very workable. I give you the credit - it CAN be done that way. But the script would need to do a dance with the ACL on the bucket, and the elastic IP on the new server (for the purpose of yum repo access). I may just used the EBS method (below). – jeff7091 Feb 24 '11 at 4:15
feedback

The code in cgbystrom's git repo is an expression of intent rather than working code.

I've made a fork and gotten things working, at least for us, and would love for someone else to take over.

https://github.com/rmela/yum-s3-plugin
link|improve this answer
feedback

I'm not aware that you can use non-proprietary authentication with S3, however we accomplish a similar goal by mounting an EBS volume to our instances once they fire up. You can then access the EBS volume as if it were part of the local file system.

We can make changes to EBS as needed to keep it up to date (often updating it hourly). Each new instance that mounts the EBS volume gets the data current as of the mount time.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.