Skip to content

Commit a9e5a5f

Browse files
committed
Acrolinx pass
1 parent cc93c84 commit a9e5a5f

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

articles/governance/policy/how-to/guest-configuration-create-linux.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ To install the **GuestConfiguration** module in PowerShell:
7474
## Background information regarding Guest Configuration artifacts and policy for Linux
7575

7676
Even in Linux environments, Guest Configuration utilizes Desired State Configuration as a language
77-
abstraction. The implementation is based in native code (C++) so it does not require loading
77+
abstraction. The implementation is based in native code (C++) so it doesn't require loading
7878
PowerShell at this time. However, it does require a configuration MOF file describing basic details
79-
about the environment. DSC is acting as a "wrapper" for InSpec to standardize how it is executed,
80-
how parameters are provided from Azure Resource Manager, and how output is captured and returned to
81-
the service. Little knowledge of DSC is required when working with custom InSpec content.
79+
about the environment. DSC is acting as a "wrapper" for InSpec to standardize how it's executed, how
80+
parameters are provided from Azure Resource Manager, and how output is captured and returned to the
81+
service. Little knowledge of DSC is required when working with custom InSpec content.
8282

8383
#### Configuration requirements
8484

@@ -142,7 +142,7 @@ Configuration AuditFilePathExists
142142
AuditFilePathExists -out ./Config
143143
```
144144

145-
The `Node AuditFilePathExists` command is not technically required but it produces a file named
145+
The `Node AuditFilePathExists` command isn't technically required but it produces a file named
146146
`AuditFilePathExists.mof` rather than the default, `localhost.mof`. Having the .mof file name follow
147147
the configuration makes it easy to organize many files when operating at scale.
148148

@@ -345,7 +345,7 @@ authored or compiled.
345345
With InSpec, parameters are typically handled as input either at runtime or as code using
346346
attributes. Guest Configuration obfuscates this process so input can be provided to Azure Resource
347347
Manager when policy is assigned. An attributes file is automatically created within the machine. You
348-
do not need to create and add a file in your project. There are two steps to adding parameters to
348+
don't need to create and add a file in your project. There are two steps to adding parameters to
349349
your Linux audit project.
350350

351351
Define the input in the Ruby file where you script what to audit on the machine. An example is given

articles/governance/policy/how-to/guest-configuration-create.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ ms.topic: how-to
66
---
77
# How to create Guest Configuration policies for Windows
88

9-
Before creating custom policies, it is a good idea to read the conceptual overview information
10-
at the page [Azure Policy Guest Configuration](../concepts/guest-configuration.md).
9+
Before creating custom policies, it's a good idea to read the conceptual overview information at the
10+
page [Azure Policy Guest Configuration](../concepts/guest-configuration.md).
1111

1212
To learn about creating Guest Configuration policies for Linux, see the page
1313
[How to create Guest Configuration policies for Linux](/guest-configuration-custom-linux.md)
@@ -76,8 +76,8 @@ To install the **GuestConfiguration** module in PowerShell:
7676

7777
Guest Configuration utilizes PowerShell Desired State Configuration as a language abstraction for
7878
writing what audit in Windows and how the audits should be performed. An instance of PowerShell 6.2
79-
is loaded and managed by the agent to host the environment, so there is no conflict with usage of
80-
PowerShell DSC in Windows PowerShell 5.1, and there is no requirement to pre-install PowerShell 6.2
79+
is loaded and managed by the agent to host the environment, so there's no conflict with usage of
80+
PowerShell DSC in Windows PowerShell 5.1, and there's no requirement to pre-install PowerShell 6.2
8181
or later.
8282

8383
For an overview of DSC concepts and terminology, see
@@ -89,7 +89,7 @@ When Guest Configuration audits a machine, it first runs `Test-TargetResource` t
8989
in the correct state. The boolean value returned by the function determines if the Azure Resource
9090
Manager status for the Guest Assignment should be Compliant/Not-Compliant. Next the provider runs
9191
`Get-TargetResource` to return the current state of each setting so details are available both about
92-
why a machine is not compliant, or to confirm that the current state is compliant.
92+
why a machine isn't compliant, or to confirm that the current state is compliant.
9393

9494
### Get-TargetResource requirements
9595

@@ -203,7 +203,7 @@ Configuration AuditBitLocker
203203
AuditBitLocker -out ./Config
204204
```
205205

206-
The `Node AuditBitlocker` command is not technically required but it produces a file named
206+
The `Node AuditBitlocker` command isn't technically required but it produces a file named
207207
`AuditBitlocker.mof` rather than the default, `localhost.mof`. Having the .mof file name follow the
208208
configuration makes it easy to organize many files when operating at scale.
209209

0 commit comments

Comments
 (0)