@@ -33,7 +33,7 @@ Updates a configuration store with the specified parameters.
3333
3434## EXAMPLES
3535
36- ### Example 1: Enable data encryption of the app conifguration store by system-assigned managed identity
36+ ### Example 1: Enable data encryption of the app configuration store by system-assigned managed identity
3737``` powershell
3838PS C:\> $key = Add-AzKeyVaultKey -VaultName kv-Name -Name key-Name -Destination 'Software'
3939PS 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
4848This command enables data encryption by a key stored in Azure Key Vault using a system-assigned managed identity.
4949The vault must have enabled soft-delete and purge-protection, and the managed identity must have these key permissions: get, wrapKey, unwrapKey.
5050
51- ### Example 2: Enable data encryption of the app conifguration store by user-assigned managed identity
51+ ### Example 2: Enable data encryption of the app configuration store by user-assigned managed identity
5252``` powershell
5353PS C:\> $key = Add-AzKeyVaultKey -VaultName kv-Name -Name key-Name -Destination 'Software'
5454PS 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
6565The user-assigned identity must have been set with ` -UserAssignedIdentity ` .
6666The vault must have enabled soft-delete and purge-protection, and the managed identity must have these key permissions: get, wrapKey, unwrapKey.
6767
68- ### Example 3: Disable encryption of an app conifguration store.
68+ ### Example 3: Disable encryption of an app configuration store.
6969``` powershell
7070PS C:\> $appConf = Get-AzAppConfigurationStore -ResourceGroupName azpwsh-manual-test -Name appconfig-test10 | Update-AzAppConfigurationStore -EncryptionKeyIdentifier $null
7171
@@ -74,9 +74,9 @@ Location Name Type
7474eastus appconfig-test10 Microsoft.AppConfiguration/configurationStores
7575```
7676
77- This command disables encryption of an app conifguration store.
77+ This command disables encryption of an app configuration store.
7878
79- ### Example 3: Update sku and tag of an app conifguration store by pipeline.
79+ ### Example 3: Update sku and tag of an app configuration store by pipeline.
8080``` powershell
8181PS C:\> Get-AzAppConfigurationStore -ResourceGroupName azpwsh-manual-test -Name appconfig-test10 | Update-AzAppConfigurationStore -Sku 'standard' -Tag @{'key'='update'}
8282
@@ -85,7 +85,7 @@ Location Name Type
8585eastus appconfig-test10 Microsoft.AppConfiguration/configurationStores
8686```
8787
88- This command updates sku and tag of an app conifguration store by pipeline.
88+ This command updates sku and tag of an app configuration store by pipeline.
8989
9090## PARAMETERS
9191
0 commit comments