Skip to content

Commit ee4a7d0

Browse files
authored
Update Update-AzAppConfigurationStore.md (#13485)
Fixed spelling Conifguration => Configuration
1 parent df875b0 commit ee4a7d0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/AppConfiguration/help/Update-AzAppConfigurationStore.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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
3838
PS C:\> $key = Add-AzKeyVaultKey -VaultName kv-Name -Name key-Name -Destination 'Software'
3939
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
4848
This command enables data encryption by a key stored in Azure Key Vault using a system-assigned managed identity.
4949
The 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
5353
PS C:\> $key = Add-AzKeyVaultKey -VaultName kv-Name -Name key-Name -Destination 'Software'
5454
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
6565
The user-assigned identity must have been set with `-UserAssignedIdentity`.
6666
The 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
7070
PS C:\> $appConf = Get-AzAppConfigurationStore -ResourceGroupName azpwsh-manual-test -Name appconfig-test10 | Update-AzAppConfigurationStore -EncryptionKeyIdentifier $null
7171
@@ -74,9 +74,9 @@ Location Name Type
7474
eastus 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
8181
PS 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
8585
eastus 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

Comments
 (0)