What is Microsoft Azure?
Azure is a platform and service for cloud computing. Through Microsoft's extensive global network of data centres, it offers a broad range of cloud services, such as computing, analytics, storage, and networking, enabling developers and companies to create, implement, and oversee applications. In this exercise, we will be using Azure to provide storage ideal for a company app. This article will provide a visual demonstration the process outlined in this exercise provided by Microsoft: https://microsoftlearning.github.io/Secure-storage-for-Azure-Files-and-Azure-Blob-Storage/Instructions/Labs/LAB_04_storage_web_app.html
Create the storage account and managed identity
1. Provide a storage account for the web app
For Resource group select Create new. Give your resource group a name and select OK to save your changes.
Provide a Storage account name. Ensure the name is unique and meets the naming requirements.
Check the box for Enable infrastructure encryption.
Notice the warning, This option cannot be changed after this
storage account is created.
Wait for the resource to deploy.
2. Provide a managed identity for the web app to use
Select your resource group.
Give your managed identity a name.
3. Assign the correct permissions to the managed identity. The identity only needs to read and list containers and blobs
Select the Access Control (IAM) blade.
On the Job functions roles page, search for and select the Storage Blob Data Reader role.
On the Members page, select Managed identity.
![select Managed identity]
- Select Select members, in the Managed identity drop-down select User-assigned managed identity.
Select the managed identity you created in the previous step.
Select Review + assign a second time to add the role assignment.
Your storage account can now be accessed by a managed identity with the Storage Data Blob Reader permissions.
Secure access to the storage account with a key vault and key
1. To create the key vault and key needed for this part of the lab, your user account must have Key Vault Administrator permissions
Select your resource group, and then the Access Control (IAM) blade.
On the Job functions roles page, search for and select the Key Vault Administrator role.
On the Members page, select User, group, or service principal.
Select Select members.
Search for and select your user account. Your user account is shown in the top right of the portal.
Select Review + assign two times to add the role assignment.
2. Create a key vault to store the access keys.
Select your resource group.
Provide the name for the key vault. The name must be unique.
Ensure on the Access configuration tab that Azure role-based access control (recommended) is selected.
Wait for the validation checks to complete and then select Create.
On the Overview blade ensure both Soft-delete and Purge protection are enabled.
Select Enable purge protection (enforce a mandatory retention period for deleted vaults and vault objects) after selecting Purge protection (if it is disabled). Click save
3. Create a customer-managed key in the key vault.
- In your key vault, in the Objects section, select the Keys blade.
Name the key
Take the defaults for the rest of the parameters, and Create the key.
Configure the storage account to use the customer managed key in the key vault
1. Before you can complete the next steps, you must assign the Key Vault Crypto Service Encryption User role to the managed identity
Select your resource group, and then the Access Control (IAM) blade.
On the Job functions roles page, search for and select the Key Vault Crypto Service Encryption User role.
On the Members page, select Managed identity.
Select Select members, in the Managed identity drop-down select
User-assigned managed identity.
Select Review + assign two times to add the role assignment.
2. Configure the storage account to use the customer managed key in your key vault.
- Return to your the storage account.
- In the Security + networking section, select the Encryption blade.
- Select Customer-managed keys.
- Select a key vault and key. Select your key vault and key.
- Select to confirm your choices.
- Ensure the Identity type is User-assigned.
- Select an identity.
- Select your managed identity then select Add.
- Save your changes.
- If you receive an error that your identity does not have the correct permissions, wait a minute and try again.
Configure an time-based retention policy and an encryption scope.
1. The developers require a storage container where files can’t be modified, even by the administrator.
- Navigate to your storage account.
Create a container called hold. Take the defaults. Be sure to Create the container.
In the Settings section, select the Access policy blade.
In the Immutable blob storage section, select + Add policy.
For the Policy type, select time-based retention.
Set the Retention period to 5 days.
Try to delete the file in the container.
Verify you are notified failed to delete blobs due to policy.
2. The developers require an encryption scope that enables infrastructure encryption.
- Navigate back to your storage account.
In the Encryption scopes tab, select Add.
Give your encryption scope a name.
The Encryption type is Microsoft-managed key.
Set Infrastructure encryption to Enable.
Create the encryption scope.
- Return to your storage account and create a new container.
- Notice in the Advanced section you can select the Encryption scope you created and apply it to all blobs in the container.
Top comments (0)