Skip to content

Commit 61aecdd

Browse files
authored
Merge pull request #107897 from Karishma-Tiwari-MSFT/patch-159
(ForumsTeam) fixes MicrosoftDocs/azure-docs#50268
2 parents ae32680 + e1a2090 commit 61aecdd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

includes/virtual-machines-sql-server-akv-next-steps.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,23 @@ The following Transact-SQL scripts provide examples for each of these areas.
1919

2020
### Prerequisites for examples
2121

22-
Each example is based on the two prerequisites: an asymmetric key from your key vault called **CONTOSO_KEY** and a credential created by the AKV Integration feature called **Azure_EKM_TDE_cred**. The following Transact-SQL commands setup these prerequisites for running the examples.
22+
Each example is based on the two prerequisites: an asymmetric key from your key vault called **CONTOSO_KEY** and a credential created by the AKV Integration feature called **Azure_EKM_cred**. The following Transact-SQL commands setup these prerequisites for running the examples.
2323

2424
``` sql
2525
USE master;
2626
GO
2727

2828
--create credential
2929
--The <<SECRET>> here requires the <Application ID> (without hyphens) and <Secret> to be passed together without a space between them.
30-
CREATE CREDENTIAL sysadmin_ekm_cred
30+
CREATE CREDENTIAL Azure_EKM_cred
3131
WITH IDENTITY = 'keytestvault', --keyvault
3232
SECRET = '<<SECRET>>'
3333
FOR CRYPTOGRAPHIC PROVIDER AzureKeyVault_EKM_Prov;
3434

3535

3636
--Map the credential to a SQL login that has sysadmin permissions. This allows the SQL login to access the key vault when creating the asymmetric key in the next step.
3737
ALTER LOGIN [SQL_Login]
38-
ADD CREDENTIAL sysadmin_ekm_cred;
38+
ADD CREDENTIAL Azure_EKM_cred;
3939

4040

4141
CREATE ASYMMETRIC KEY CONTOSO_KEY

0 commit comments

Comments
 (0)