Skip to content

Commit 5743bb6

Browse files
Merge pull request #267392 from AbhishekMallick-MS/Feb-27-2024-AKS
AKS backup - Role name updates
2 parents 7ed8fc7 + d5cb0b6 commit 5743bb6

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

articles/backup/azure-kubernetes-service-cluster-backup-concept.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.topic: conceptual
55
ms.service: backup
66
ms.custom:
77
- ignite-2023
8-
ms.date: 12/25/2023
8+
ms.date: 02/27/2024
99
author: AbhishekMallick-MS
1010
ms.author: v-abhmallick
1111
---
@@ -99,7 +99,7 @@ Also, as part of the backup and restore operations, the following roles are assi
9999
| Reader | Backup vault | AKS cluster | Allows the Backup vault to perform _List_ and _Read_ operations on AKS cluster. |
100100
| Reader | Backup vault | Snapshot resource group | Allows the Backup vault to perform _List_ and _Read_ operations on snapshot resource group. |
101101
| Contributor | AKS cluster | Snapshot resource group | Allows AKS cluster to store persistent volume snapshots in the resource group. |
102-
| Storage Account Contributor | Extension Identity | Storage account | Allows Backup Extension to store cluster resource backups in the blob container. |
102+
| Storage Blob Data Contributor | Extension Identity | Storage account | Allows Backup Extension to store cluster resource backups in the blob container. |
103103
| Data Operator for Managed Disk | Backup vault | Snapshot Resource Group | Allows Backup Vault service to move incremental snapshot data to the Vault. |
104104
| Disk Snapshot Contributor | Backup vault | Snapshot Resource Group | Allows Backup Vault to access Disks snapshots and perform Vaulting operation. |
105105
| Storage Blob Data Reader | Backup vault | Storage Account | Allow Backup Vault to access Blob Container with backup data stored to move to Vault. |

articles/backup/azure-kubernetes-service-cluster-backup-using-cli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Back up Azure Kubernetes Service (AKS) using Azure CLI
33
description: This article explains how to back up Azure Kubernetes Service (AKS) using Azure CLI.
44
ms.topic: how-to
55
ms.service: backup
6-
ms.date: 06/20/2023
6+
ms.date: 02/27/2024
77
ms.custom:
88
- devx-track-azurecli
99
- ignite-2023
@@ -200,10 +200,10 @@ Once the vault and policy creation are complete, you need to perform the followi
200200
201201
```
202202

203-
As part of extension installation, a user identity is created in the AKS cluster's Node Pool Resource Group. For the extension to access the storage account, you need to provide this identity the **Storage Account Contributor** role. To assign the required role, run the following command:
203+
As part of extension installation, a user identity is created in the AKS cluster's Node Pool Resource Group. For the extension to access the storage account, you need to provide this identity the **Storage Blob Data Contributor** role. To assign the required role, run the following command:
204204

205205
```azurecli
206-
az role assignment create --assignee-object-id $(az k8s-extension show --name azure-aks-backup --cluster-name $akscluster --resource-group $aksclusterresourcegroup --cluster-type managedClusters --query aksAssignedIdentity.principalId --output tsv) --role 'Storage Account Contributor' --scope /subscriptions/$subscriptionId/resourceGroups/$storageaccountresourcegroup/providers/Microsoft.Storage/storageAccounts/$storageaccount
206+
az role assignment create --assignee-object-id $(az k8s-extension show --name azure-aks-backup --cluster-name $akscluster --resource-group $aksclusterresourcegroup --cluster-type managedClusters --query aksAssignedIdentity.principalId --output tsv) --role 'Storage Blob Data Contributor' --scope /subscriptions/$subscriptionId/resourceGroups/$storageaccountresourcegroup/providers/Microsoft.Storage/storageAccounts/$storageaccount
207207
```
208208

209209

articles/backup/azure-kubernetes-service-cluster-manage-backups.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.service: backup
66
ms.custom:
77
- devx-track-azurecli
88
- ignite-2023
9-
ms.date: 02/09/2024
9+
ms.date: 02/27/2024
1010
author: AbhishekMallick-MS
1111
ms.author: v-abhmallick
1212
---
@@ -120,7 +120,7 @@ To stop the Backup Extension install operation, use the following command:
120120
To provide *Storage Account Contributor Permission* to the Extension Identity on storage account, run the following command:
121121

122122
```azurecli-interactive
123-
az role assignment create --assignee-object-id $(az k8s-extension show --name azure-aks-backup --cluster-name <aksclustername> --resource-group <aksclusterrg> --cluster-type managedClusters --query identity.principalId --output tsv) --role 'Storage Account Contributor' --scope /subscriptions/<subscriptionid>/resourceGroups/<storageaccountrg>/providers/Microsoft.Storage/storageAccounts/<storageaccountname>
123+
az role assignment create --assignee-object-id $(az k8s-extension show --name azure-aks-backup --cluster-name <aksclustername> --resource-group <aksclusterrg> --cluster-type managedClusters --query identity.principalId --output tsv) --role 'Storage Blob Data Contributor' --scope /subscriptions/<subscriptionid>/resourceGroups/<storageaccountrg>/providers/Microsoft.Storage/storageAccounts/<storageaccountname>
124124
```
125125

126126

0 commit comments

Comments
 (0)