Skip to content

Commit 293b244

Browse files
committed
fix function article links
1 parent 26b9886 commit 293b244

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/azure-functions/functions-encrypt-at-rest-using-cmk.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ ms.date: 03/06/2020
1010
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.
1111

1212
- [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.
1515

1616
## Set up encryption at rest
1717

@@ -32,7 +32,7 @@ Once you upload your file to Blob storage and have an SAS URL for the file, set
3232
az webapp config appsettings set --name <app-name> --resource-group <resource-group-name> --settings WEBSITE_RUN_FROM_PACKAGE="<your-SAS-URL>"
3333
```
3434

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).
3636

3737
### Encrypt the application setting using Key Vault references
3838

@@ -44,7 +44,7 @@ Now you can replace the value of the `WEBSITE_RUN_FROM_PACKAGE` application sett
4444
az keyvault create --name "Contoso-Vault" --resource-group <group-name> --location eastus
4545
```
4646
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:
4848
4949
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:
5050
@@ -114,5 +114,5 @@ Only the cost associated with the Azure Storage Account and any applicable egres
114114
115115
## Next steps
116116
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)
118118
- [Azure Storage encryption for data at rest](../storage/common/storage-service-encryption.md)

0 commit comments

Comments
 (0)