Skip to content

Commit 08efe90

Browse files
Merge pull request #306924 from MutemwaRMasheke/oct-docs
Oct docs
2 parents 8892d60 + 918857d commit 08efe90

3 files changed

Lines changed: 21 additions & 0 deletions

File tree

articles/governance/machine-configuration/concepts/assignments.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ resource type is `Microsoft.GuestConfiguration/guestConfigurationAssignments`. A
3434
the **complianceStatus** property of the guest assignment resource to report compliance status. For
3535
more information, see [getting compliance data][02].
3636

37+
> [!NOTE]
38+
> When assigning a custom policy that deploys a guest configuration, the assignmentType property on the guest assignment resource may temporarily appear as "Null" before being updated to reflect the value specified in the policy definition. This is expected behavior and typically resolves within one hour.
39+
3740
### Deletion of guest assignments from Azure Policy
3841

3942
When an Azure Policy assignment is deleted, if the policy created a machine configuration

articles/governance/machine-configuration/how-to/develop-custom-package/2-create-package.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,17 @@ $params = @{
175175
}
176176
New-GuestConfigurationPackage @params
177177
```
178+
```powershell
179+
# Create a package that will audit the configuration at 180 minute intervals
180+
$params = @{
181+
Name = 'MyConfig'
182+
Configuration = './MyConfig/MyConfig.mof'
183+
Type = 'Audit'
184+
Force = $true
185+
FrequencyMinutes = 180
186+
}
187+
New-GuestConfigurationPackage @params
188+
```
178189

179190
An object is returned with the **Name** and **Path** of the created package.
180191

articles/governance/machine-configuration/overview.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,13 @@ Machine configuration policy definitions support custom virtual machine images a
160160
one of the operating systems in the previous table. Machine Configuration does not support VMSS
161161
uniform but does support [VMSS Flex][46].
162162

163+
> [!IMPORTANT]
164+
> For any VM extension to function correctly in Azure, write permissions must be granted to the /var/lib directory. Without this permission, the Machine Configuration extension cannot be installed.
165+
> For Azure Arc-enabled servers, write access to specific directories is also required to enable logging and telemetry.
166+
> As a result, Azure Machine Configuration does not have official support for default CIS-hardened or SELinux configurations.
167+
> Additional configuration may be necessary for the extension to operate as expected.
168+
> Customers using hardened environments should evaluate compatibility and plan accordingly.
169+
163170
## Network requirements
164171

165172
Azure virtual machines can use either their local virtual network adapter (vNIC) or Azure Private

0 commit comments

Comments
 (0)