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/storage/files/files-redundancy.md
+6-24Lines changed: 6 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,22 +23,6 @@ Azure classic file shares created with the Microsoft.Storage resource provider a
23
23
24
24
When you create a storage account, you choose a redundancy setting for the storage account that's shared for all storage services exposed by that account. Therefore, all file shares deployed in the same storage account have the same redundancy setting. You might want to isolate file shares in separate storage accounts if they have different redundancy requirements.
25
25
26
-
## Applies to
27
-
| Management model | Billing model | Media tier | Redundancy | SMB | NFS |
Data in an Azure storage account is always replicated three times in the primary region. Azure Files offers two options for how your data is replicated in the primary region:
@@ -208,20 +192,18 @@ You can verify region supportability for various billing models using the follow
208
192
209
193
To view region supportability based on different billing models, use Azure PowerShell or Azure CLI.
210
194
211
-
# [PowerShell](#tab/azure-powershell)
195
+
# [Azure PowerShell](#tab/azure-powershell)
212
196
213
197
```powershell
214
-
Powershell:
215
-
216
198
# Login
217
199
Connect-AzAccount
218
200
# (Optional but recommended if you have multiple subs)
219
201
# Set-AzContext -Subscription $subscriptionID
220
202
221
203
$subscriptionID = "your-subscription-id-number"
222
204
223
-
# Get token (now SecureString by default)
224
-
$secureToken = (Get-AzAccessToken).Token # SecureString now [1](/powershell/module/az.accounts/get-azaccesstoken?view=azps-15.3.0)
205
+
# Get token (output is now SecureString by default, see https://learn.microsoft.com/powershell/module/az.accounts/get-azaccesstoken)
206
+
$secureToken = (Get-AzAccessToken).Token # SecureString now
225
207
226
208
# Convert SecureString -> plaintext (Az 14 migration pattern)
0 commit comments