Skip to content

Commit 5b6ce49

Browse files
committed
edits
1 parent 9b51367 commit 5b6ce49

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/virtual-machines/extensions/guest-configuration.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.author: migreene
99
ms.date: 04/05/2023
1010
---
1111

12-
# Overview of the Azure Automanage machine configuration extension
12+
# Azure Automanage machine configuration extension
1313

1414
The machine configuration extension is a feature of Azure Automanage that performs audit and configuration operations inside virtual machines (VMs).
1515

@@ -80,13 +80,13 @@ az vm extension set --publisher Microsoft.GuestConfiguration --name Configurati
8080
To deploy the extension for Linux:
8181

8282
```powershell
83-
Set-AzVMExtension -Publisher 'Microsoft.GuestConfiguration' -Type 'ConfigurationforLinux' -Name 'AzurePolicyforLinux' -TypeHandlerVersion 1.0 -ResourceGroupName '<myResourceGroup>' -Location '<myLocation>' -VMName '<myVM>' -EnableAutomaticUpgrade $true
83+
Set-AzVMExtension -Publisher 'Microsoft.GuestConfiguration' -ExtensionType 'ConfigurationForLinux' -Name 'AzurePolicyforLinux' -TypeHandlerVersion 1.0 -ResourceGroupName '<myResourceGroup>' -Location '<myLocation>' -VMName '<myVM>' -EnableAutomaticUpgrade $true
8484
```
8585

8686
To deploy the extension for Windows:
8787

8888
```powershell
89-
Set-AzVMExtension -Publisher 'Microsoft.GuestConfiguration' -Type 'ConfigurationforWindows' -Name 'AzurePolicyforWindows' -TypeHandlerVersion 1.0 -ResourceGroupName '<myResourceGroup>' -Location '<myLocation>' -VMName '<myVM>' -EnableAutomaticUpgrade $true
89+
Set-AzVMExtension -Publisher 'Microsoft.GuestConfiguration' -ExtensionType 'ConfigurationforWindows' -Name 'AzurePolicyforWindows' -TypeHandlerVersion 1.0 -ResourceGroupName '<myResourceGroup>' -Location '<myLocation>' -VMName '<myVM>' -EnableAutomaticUpgrade $true
9090
```
9191

9292
### ARM template
@@ -104,7 +104,7 @@ To deploy the extension for Linux:
104104
],
105105
"properties": {
106106
"publisher": "Microsoft.GuestConfiguration",
107-
"type": "ConfigurationforLinux",
107+
"type": "ConfigurationForLinux",
108108
"typeHandlerVersion": "1.0",
109109
"autoUpgradeMinorVersion": true,
110110
"enableAutomaticUpgrade": true, 
@@ -151,7 +151,7 @@ resource windowsVMGuestConfigExtension 'Microsoft.Compute/virtualMachines/extens
151151
location: resourceGroup().location
152152
properties: {
153153
publisher: 'Microsoft.GuestConfiguration'
154-
type: 'ConfigurationforLinux'
154+
type: 'ConfigurationForLinux'
155155
typeHandlerVersion: '1.0'
156156
autoUpgradeMinorVersion: true
157157
enableAutomaticUpgrade: true
@@ -192,7 +192,7 @@ resource "azurerm_virtual_machine_extension" "gc" {
192192
name = "AzurePolicyforLinux"
193193
virtual_machine_id = "<myVMID>"
194194
publisher = "Microsoft.GuestConfiguration"
195-
type = "ConfigurationforLinux"
195+
type = "ConfigurationForLinux"
196196
type_handler_version = "1.0"
197197
auto_upgrade_minor_version = "true"
198198
}

0 commit comments

Comments
 (0)