Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/AppConfiguration/help/Update-AzAppConfigurationStore.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand All @@ -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

Expand All @@ -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'}

Expand All @@ -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

Expand Down