3

We're planning on using an Amazon RDS MS SQL Server 2008 instance in our Amazon VPC. Since we don't have access to the underlying OS for RDS, I was wondering if it's at all possible to join an RDS instance to a Windows Domain?

Anyone has experience with that?

DanyO
  • 33
  • 3

1 Answers1

1

I believe that by design, no this is not possible. RDS instances actually live on EC2 instances that the AWS system creates and maintains for you. You have fairly good admin control over the back-end of the RDS (DB Parameter Groups are good for this) but since you have no OS access you can't reach far enough to configure this, even if you were to run the RDS within your own VPC that has a DC running in it.

If you need a SQL server with full AD connectivity, I believe your only good option within AWS is to run an EC2 instance that you domain, and run SQL 2005/2008/2012 on it.

(By the way, I would not be surprised at all if AWS engineers are thinking about how to pull this off, since SQL as a service that you could easily join to your VPC domain would theoretically not be that difficult and would be a "killer app" of sorts. The problem is it would disallow multiple/different RDS clients living on the same box, so they would basically need to recreate what you could create in EC2 above.)

Neal Magee
  • 329
  • 1
  • 7
  • 1
    Looks like this is now possible: https://aws.amazon.com/about-aws/whats-new/2016/03/amazon-rds-for-sql-server-now-supports-windows-authentication/ –  Mar 24 '16 at 04:32
  • Good find! This could possibly be a big deal. – Neal Magee Mar 25 '16 at 14:29