Using SSL with a Microsoft SQL Server DB instance (original) (raw)

You can use Secure Sockets Layer (SSL) to encrypt connections between your client applications and your Amazon RDS DB instances running Microsoft SQL Server. SSL support is available in all AWS regions for all supported SQL Server editions.

When you create a SQL Server DB instance, Amazon RDS creates an SSL certificate for it. The SSL certificate includes the DB instance endpoint as the Common Name (CN) for the SSL certificate to guard against spoofing attacks.

There are 2 ways to use SSL to connect to your SQL Server DB instance:

Note

When you set rds.force_ssl to 1 and use SSMS version 19.3, 20.0, and 20.2, check for the following:

For information about Transport Layer Security (TLS) support for SQL Server, see TLS 1.2 support for Microsoft SQL Server.

Forcing connections to your DB instance to use SSL

You can force all connections to your DB instance to use SSL. If you force connections to use SSL, it happens transparently to the client, and the client doesn't have to do any work to use SSL.

If you want to force SSL, use the rds.force_ssl parameter. By default, therds.force_ssl parameter is set to 0 (off). Set therds.force_ssl parameter to 1 (on) to force connections to use SSL. The rds.force_ssl parameter is static, so after you change the value, you must reboot your DB instance for the change to take effect.

To force all connections to your DB instance to use SSL
  1. Determine the parameter group that is attached to your DB instance:
    1. Sign in to the AWS Management Console and open the Amazon RDS console athttps://console.aws.amazon.com/rds/.
    2. In the top right corner of the Amazon RDS console, choose the AWS Region of your DB instance.
    3. In the navigation pane, choose Databases, and then choose the name of your DB instance to show its details.
    4. Choose the Configuration tab. Find theParameter group in the section.
  2. If necessary, create a new parameter group. If your DB instance uses the default parameter group, you must create a new parameter group. If your DB instance uses a nondefault parameter group, you can choose to edit the existing parameter group or to create a new parameter group. If you edit an existing parameter group, the change affects all DB instances that use that parameter group.
    To create a new parameter group, follow the instructions in Creating a DB parameter group in Amazon RDS.
  3. Edit your new or existing parameter group to set therds.force_ssl parameter to true. To edit the parameter group, follow the instructions in Modifying parameters in a DB parameter group in Amazon RDS.
  4. If you created a new parameter group, modify your DB instance to attach the new parameter group. Modify the DB Parameter Group setting of the DB instance. For more information, see Modifying an Amazon RDS DB instance.
  5. Reboot your DB instance. For more information, see Rebooting a DB instance.

Encrypting specific connections

You can force all connections to your DB instance to use SSL, or you can encrypt connections from specific client computers only. To use SSL from a specific client, you must obtain certificates for the client computer, import certificates on the client computer, and then encrypt the connections from the client computer.

Note

All SQL Server instances created after August 5, 2014, use the DB instance endpoint in the Common Name (CN) field of the SSL certificate. Prior to August 5, 2014, SSL certificate verification was not available for VPC-based SQL Server instances. If you have a VPC-based SQL Server DB instance that was created before August 5, 2014, and you want to use SSL certificate verification and ensure that the instance endpoint is included as the CN for the SSL certificate for that DB instance, then rename the instance. When you rename a DB instance, a new certificate is deployed and the instance is rebooted to enable the new certificate.

Obtaining certificates for client computers

To encrypt connections from a client computer to an Amazon RDS DB instance running Microsoft SQL Server, you need a certificate on your client computer.

To obtain that certificate, download the certificate to your client computer. You can download a root certificate that works for all regions. You can also download a certificate bundle that contains both the old and new root certificate. In addition, you can download region-specific intermediate certificates. For more information about downloading certificates, see Using SSL/TLS to encrypt a connection to a DB instance or cluster.

After you have downloaded the appropriate certificate, import the certificate into your Microsoft Windows operating system by following the procedure in the section following.

Importing certificates on client computers

You can use the following procedure to import your certificate into the Microsoft Windows operating system on your client computer.

To import the certificate into your Windows operating system:
  1. On the Start menu, type Run in the search box and press Enter.
  2. In the Open box, type MMC and then choose OK.
  3. In the MMC console, on the File menu, chooseAdd/Remove Snap-in.
  4. In the Add or Remove Snap-ins dialog box, forAvailable snap-ins, selectCertificates, and then chooseAdd.
  5. In the Certificates snap-in dialog box, chooseComputer account, and then chooseNext.
  6. In the Select computer dialog box, chooseFinish.
  7. In the Add or Remove Snap-ins dialog box, chooseOK.
  8. In the MMC console, expand Certificates, open the context (right-click) menu for Trusted Root Certification Authorities, choose All Tasks, and then choose Import.
  9. On the first page of the Certificate Import Wizard, chooseNext.
  10. On the second page of the Certificate Import Wizard, chooseBrowse. In the browse window, change the file type toAll files (*.*) because .pem is not a standard certificate extension. Locate the .pem file that you downloaded previously.
  11. Choose Open to select the certificate file, and then choose Next.
  12. On the third page of the Certificate Import Wizard, chooseNext.
  13. On the fourth page of the Certificate Import Wizard, chooseFinish. A dialog box appears indicating that the import was successful.
  14. In the MMC console, expand Certificates, expand Trusted Root Certification Authorities, and then chooseCertificates. Locate the certificate to confirm it exists, as shown here.
    In the MMC console, in the navigation pane, the Certificates folder is selected drilled down from Console Root, Certificates (Local Computer), and Trusted Root Certification Authority. In the main page, select the required CA certificate.

Encrypting connections to an Amazon RDS DB instance running Microsoft SQL Server

After you have imported a certificate into your client computer, you can encrypt connections from the client computer to an Amazon RDS DB instance running Microsoft SQL Server.

For SQL Server Management Studio, use the following procedure. For more information about SQL Server Management Studio, see Use SQL Server management studio.

To encrypt connections from SQL Server Management Studio
  1. Launch SQL Server Management Studio.
  2. For Connect to server, type the server information, login user name, and password.
  3. Choose Options.
  4. Select Encrypt connection.
  5. Choose Connect.
  6. Confirm that your connection is encrypted by running the following query. Verify that the query returns true forencrypt_option.
select ENCRYPT_OPTION from SYS.DM_EXEC_CONNECTIONS where SESSION_ID = @@SPID  

For any other SQL client, use the following procedure.

To encrypt connections from other SQL clients
  1. Append encrypt=true to your connection string. This string might be available as an option, or as a property on the connection page in GUI tools.
Note

To enable SSL encryption for clients that connect using JDBC, you might need to add the Amazon RDS SQL certificate to the Java CA certificate (cacerts) store. You can do this by using the keytool utility. 2. Confirm that your connection is encrypted by running the following query. Verify that the query returns true forencrypt_option.

select ENCRYPT_OPTION from SYS.DM_EXEC_CONNECTIONS where SESSION_ID = @@SPID