diff --git a/src/AppConfiguration/help/Update-AzAppConfigurationStore.md b/src/AppConfiguration/help/Update-AzAppConfigurationStore.md index a940ef12f91c..54cddf5303f5 100644 --- a/src/AppConfiguration/help/Update-AzAppConfigurationStore.md +++ b/src/AppConfiguration/help/Update-AzAppConfigurationStore.md @@ -33,7 +33,7 @@ Updates a configuration store with the specified parameters. ## EXAMPLES -### Example 1: Enable data encryption of the app conifguration store by system-assigned managed identity +### Example 1: Enable data encryption of the app configuration store by system-assigned managed identity ```powershell PS C:\> $key = Add-AzKeyVaultKey -VaultName kv-Name -Name key-Name -Destination 'Software' PS C:\> $systemAssignedAppStore = New-AzAppConfigurationStore -Name appconfig-test11 -ResourceGroupName azpwsh-manual-test -Location $env.location -Sku 'standard' -IdentityType "SystemAssigned" @@ -48,7 +48,7 @@ eastus appconfig-test01 Microsoft.AppConfiguration/configurationStores This command enables data encryption by a key stored in Azure Key Vault using a system-assigned managed identity. The vault must have enabled soft-delete and purge-protection, and the managed identity must have these key permissions: get, wrapKey, unwrapKey. -### Example 2: Enable data encryption of the app conifguration store by user-assigned managed identity +### Example 2: Enable data encryption of the app configuration store by user-assigned managed identity ```powershell PS C:\> $key = Add-AzKeyVaultKey -VaultName kv-Name -Name key-Name -Destination 'Software' PS C:\> $assignedIdentity = New-AzUserAssignedIdentity -ResourceGroupName azpwsh-manual-test -Name assignedIdentity @@ -65,7 +65,7 @@ This command enables data encryption by a key stored in Azure Key Vault using a The user-assigned identity must have been set with `-UserAssignedIdentity`. The vault must have enabled soft-delete and purge-protection, and the managed identity must have these key permissions: get, wrapKey, unwrapKey. -### Example 3: Disable encryption of an app conifguration store. +### Example 3: Disable encryption of an app configuration store. ```powershell PS C:\> $appConf = Get-AzAppConfigurationStore -ResourceGroupName azpwsh-manual-test -Name appconfig-test10 | Update-AzAppConfigurationStore -EncryptionKeyIdentifier $null @@ -74,9 +74,9 @@ Location Name Type eastus appconfig-test10 Microsoft.AppConfiguration/configurationStores ``` -This command disables encryption of an app conifguration store. +This command disables encryption of an app configuration store. -### Example 3: Update sku and tag of an app conifguration store by pipeline. +### Example 3: Update sku and tag of an app configuration store by pipeline. ```powershell PS C:\> Get-AzAppConfigurationStore -ResourceGroupName azpwsh-manual-test -Name appconfig-test10 | Update-AzAppConfigurationStore -Sku 'standard' -Tag @{'key'='update'} @@ -85,7 +85,7 @@ Location Name Type eastus appconfig-test10 Microsoft.AppConfiguration/configurationStores ``` -This command updates sku and tag of an app conifguration store by pipeline. +This command updates sku and tag of an app configuration store by pipeline. ## PARAMETERS