You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-encrypt-at-rest-using-cmk.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,8 +10,8 @@ ms.date: 03/06/2020
10
10
Encrypting your function app's application data at rest requires an Azure Storage Account and an Azure Key Vault. These services are used when you run your app from a deployment package.
11
11
12
12
-[Azure Storage provides encryption at rest](../storage/common/storage-service-encryption.md). You can use system-provided keys or your own, customer-managed keys. This is where your application data is stored when it's not running in a function app in Azure.
13
-
-[Running from a deployment package](deploy-run-package.md) is a deployment feature of App Service. It allows you to deploy your site content from an Azure Storage Account using a Shared Access Signature (SAS) URL.
14
-
-[Key Vault references](app-service-key-vault-reference.md) are a security feature of App Service. It allows you to import secrets at runtime as application settings. Use this to encrypt the SAS URL of your Azure Storage Account.
13
+
-[Running from a deployment package]((run-functions-from-deployment-package.md) is a deployment feature of App Service. It allows you to deploy your site content from an Azure Storage Account using a Shared Access Signature (SAS) URL.
14
+
-[Key Vault references](../app-service/app-service-key-vault-reference.md) are a security feature of App Service. It allows you to import secrets at runtime as application settings. Use this to encrypt the SAS URL of your Azure Storage Account.
15
15
16
16
## Set up encryption at rest
17
17
@@ -32,7 +32,7 @@ Once you upload your file to Blob storage and have an SAS URL for the file, set
32
32
az webapp config appsettings set --name <app-name> --resource-group <resource-group-name> --settings WEBSITE_RUN_FROM_PACKAGE="<your-SAS-URL>"
33
33
```
34
34
35
-
Adding this application setting causes your function app to restart. After the app has restarted, browse to it and make sure that the app has started correctly using the deployment package. If the application didn't start correctly, see the [Run from package troubleshooting guide](deploy-run-package.md#troubleshooting).
35
+
Adding this application setting causes your function app to restart. After the app has restarted, browse to it and make sure that the app has started correctly using the deployment package. If the application didn't start correctly, see the [Run from package troubleshooting guide](run-functions-from-deployment-package.md#troubleshooting).
36
36
37
37
### Encrypt the application setting using Key Vault references
38
38
@@ -44,7 +44,7 @@ Now you can replace the value of the `WEBSITE_RUN_FROM_PACKAGE` application sett
44
44
az keyvault create --name "Contoso-Vault" --resource-group <group-name> --location eastus
45
45
```
46
46
47
-
1. Follow [these instructions to grant your app access](app-service-key-vault-references.md#granting-your-app-access-to-key-vault) to your key vault:
47
+
1. Follow [these instructions to grant your app access](../app-service/app-service-key-vault-references.md#granting-your-app-access-to-key-vault) to your key vault:
48
48
49
49
1. Use the following [`az keyvault secret set`](/cli/azure/keyvault/secret#az-keyvault-secret-set) command to add your external URL as a secret in your key vault:
50
50
@@ -114,5 +114,5 @@ Only the cost associated with the Azure Storage Account and any applicable egres
114
114
115
115
## Next steps
116
116
117
-
- [Key Vault references for App Service](app-service-key-vault-references.md)
117
+
- [Key Vault references for App Service](../app-service/app-service-key-vault-references.md)
118
118
- [Azure Storage encryption for data at rest](../storage/common/storage-service-encryption.md)
0 commit comments