Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit 770140f

Browse files
authored
Merge pull request #11100 from MicrosoftDocs/VanMSFT-patch-1
Update use-sql-server-connector-with-sql-encryption-features.md
2 parents 136bc91 + 5e0b1b8 commit 770140f

1 file changed

Lines changed: 10 additions & 11 deletions

File tree

docs/relational-databases/security/encryption/use-sql-server-connector-with-sql-encryption-features.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Use SQL Server Connector with SQL Encryption Features | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "04/04/2017"
4+
ms.date: "07/18/2019"
55
ms.prod: sql
66
ms.reviewer: vanto
77
ms.technology: security
@@ -12,10 +12,9 @@ helpviewer_keywords:
1212
ms.assetid: 58fc869e-00f1-4d7c-a49b-c0136c9add89
1313
author: aliceku
1414
ms.author: aliceku
15-
monikerRange: "= azuresqldb-current || = sqlallproducts-allversions"
1615
---
1716
# Use SQL Server Connector with SQL Encryption Features
18-
[!INCLUDE[appliesto-xx-asdb-xxxx-xxx-md](../../../includes/appliesto-xx-asdb-xxxx-xxx-md.md)]
17+
[!INCLUDE[appliesto-xx-asdb-xxxx-xxx-md](../../../includes/appliesto-ss-xxxx-xxxx-xxx-md.md)]
1918
Common [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] encryption activities using an asymmetric key protected by the Azure Key Vault include the following three areas.
2019

2120
- Transparent Data Encryption by using an Asymmetric Key from Azure Key Vault
@@ -42,8 +41,8 @@ You will need to create a credential and a login, and create a database encrypti
4241
Modify the [!INCLUDE[tsql](../../../includes/tsql-md.md)] script below in the following ways:
4342

4443
- Edit the `IDENTITY` argument (`ContosoDevKeyVault`) to point to your Azure Key Vault.
45-
- If you're using **public Azure**, replace the `IDENTITY` argument with the name of your Azure Key Vault from Part II.
46-
- If you're using a **private Azure cloud** (ex. Azure Government, Azure China, or Azure Germany), replace the `IDENTITY` argument with the Vault URI that is returned in Part II, step 3. Do not include "https://" in the Vault URI.
44+
- If you're using **global Azure**, replace the `IDENTITY` argument with the name of your Azure Key Vault from Part II.
45+
- If you're using a **private Azure cloud** (ex. Azure Government, Azure China 21Vianet, or Azure Germany), replace the `IDENTITY` argument with the Vault URI that is returned in Part II, step 3. Do not include "https://" in the Vault URI.
4746

4847
- Replace the first part of the `SECRET` argument with the Azure Active Directory **Client ID** from Part I. In this example, the **Client ID** is `EF5C8E094D2A4A769998D93440D8115D`.
4948

@@ -55,9 +54,9 @@ You will need to create a credential and a login, and create a database encrypti
5554
```sql
5655
USE master;
5756
CREATE CREDENTIAL Azure_EKM_TDE_cred
58-
WITH IDENTITY = 'ContosoDevKeyVault', -- for public Azure
57+
WITH IDENTITY = 'ContosoDevKeyVault', -- for global Azure
5958
-- WITH IDENTITY = 'ContosoDevKeyVault.vault.usgovcloudapi.net', -- for Azure Government
60-
-- WITH IDENTITY = 'ContosoDevKeyVault.vault.azure.cn', -- for Azure China
59+
-- WITH IDENTITY = 'ContosoDevKeyVault.vault.azure.cn', -- for Azure China 21Vianet
6160
-- WITH IDENTITY = 'ContosoDevKeyVault.vault.microsoftazure.de', -- for Azure Germany
6261
SECRET = 'EF5C8E094D2A4A769998D93440D8115DReplace-With-AAD-Client-Secret'
6362
FOR CRYPTOGRAPHIC PROVIDER AzureKeyVault_EKM_Prov;
@@ -139,8 +138,8 @@ The [!INCLUDE[ssDE](../../../includes/ssde-md.md)] needs the credential when acc
139138
Modify the [!INCLUDE[tsql](../../../includes/tsql-md.md)] script below in the following ways:
140139

141140
- Edit the `IDENTITY` argument (`ContosoDevKeyVault`) to point to your Azure Key Vault.
142-
- If you're using **public Azure**, replace the `IDENTITY` argument with the name of your Azure Key Vault from Part II.
143-
- If you're using a **private Azure cloud** (ex. Azure Government, Azure China, or Azure Germany), replace the `IDENTITY` argument with the Vault URI that is returned in Part II, step 3. Do not include "https://" in the Vault URI.
141+
- If you're using **global Azure**, replace the `IDENTITY` argument with the name of your Azure Key Vault from Part II.
142+
- If you're using a **private Azure cloud** (ex. Azure Government, Azure China 21Vianet, or Azure Germany), replace the `IDENTITY` argument with the Vault URI that is returned in Part II, step 3. Do not include "https://" in the Vault URI.
144143

145144
- Replace the first part of the `SECRET` argument with the Azure Active Directory **Client ID** from Part I. In this example, the **Client ID** is `EF5C8E094D2A4A769998D93440D8115D`.
146145

@@ -153,9 +152,9 @@ The [!INCLUDE[ssDE](../../../includes/ssde-md.md)] needs the credential when acc
153152
USE master;
154153
155154
CREATE CREDENTIAL Azure_EKM_Backup_cred
156-
WITH IDENTITY = 'ContosoDevKeyVault', -- for public Azure
155+
WITH IDENTITY = 'ContosoDevKeyVault', -- for global Azure
157156
-- WITH IDENTITY = 'ContosoDevKeyVault.vault.usgovcloudapi.net', -- for Azure Government
158-
-- WITH IDENTITY = 'ContosoDevKeyVault.vault.azure.cn', -- for Azure China
157+
-- WITH IDENTITY = 'ContosoDevKeyVault.vault.azure.cn', -- for Azure China 21Vianet
159158
-- WITH IDENTITY = 'ContosoDevKeyVault.vault.microsoftazure.de', -- for Azure Germany
160159
SECRET = 'EF5C8E094D2A4A769998D93440D8115DReplace-With-AAD-Client-Secret'
161160
FOR CRYPTOGRAPHIC PROVIDER AzureKeyVault_EKM_Prov;

0 commit comments

Comments
 (0)