Skip to content

Commit c37bf95

Browse files
committed
edits based on feedback
1 parent f639aac commit c37bf95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/storage/common/storage-account-get-info.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ To display the creation time of the account access keys for a storage account in
189189

190190
# [PowerShell](#tab/powershell)
191191

192-
To return the creation time of the account access keys for a storage account with PowerShell, make sure you have installed the [Az.Storage](https://www.powershellgallery.com/packages/Az.Storage) module. Next, call the [Get-AzStorageAccount](/powershell/module/az.storage/get-azstorageaccount) command to get the **keyCreationTime** property, which includes the creation time for both keys. In the sample code below we get the keyCreationTime for both keys and display the value of each. We also test whether each value is null to distinguish a blank string value from a null value.:
192+
To return the creation time of the account access keys for a storage account with PowerShell, make sure you have installed the [Az.Storage](https://www.powershellgallery.com/packages/Az.Storage) module. Next, call the [Get-AzStorageAccount](/powershell/module/az.storage/get-azstorageaccount) command to get the **keyCreationTime** property, which includes the creation time for both keys. In the sample code below we get the **keyCreationTime** for both keys and display the value of each. We also test whether each value is null to distinguish a blank string value from a null value:
193193

194194
```azurepowershell
195195
$rgName = <resource-group>
@@ -205,7 +205,7 @@ $keyCreationTime.key2 -eq $null
205205

206206
# [Azure CLI](#tab/azure-cli)
207207

208-
To return the creation time of the account access keys for a storage account with Azure CLI, call the [az storage account show](/cli/azure/storage/account#az-storage-account-show) command and query the keyCreationTime:
208+
To return the creation time of the account access keys for a storage account with Azure CLI, call the [az storage account show](/cli/azure/storage/account#az-storage-account-show) command and query the **keyCreationTime**:
209209

210210
```azurecli
211211
az storage account show \

0 commit comments

Comments
 (0)