Skip to content

Commit cb269f7

Browse files
committed
validation
1 parent a15ce40 commit cb269f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/automation/shared-resources/modules.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ When Automation executes runbook and DSC compilation jobs, it loads the modules
3434

3535
The following table lists modules that Azure Automation imports by default when you create your Automation account. Automation can import newer versions of these modules. However, you can't remove the original version from your Automation account, even if you delete a newer version. Note that these default modules include several AzureRM modules.
3636

37-
Automation doesn't import the root Az module automatically into any new or existing Automation accounts. For more about working with these modules, see [Migrating to Az modules](#migrating-to-az-modules).
37+
Automation doesn't import the root Az module automatically into any new or existing Automation accounts. For more about working with these modules, see [Migrating to Az modules](#migrate-to-az-modules).
3838

3939
> [!NOTE]
4040
> We don't recommend altering modules and runbooks in Automation accounts that contain the [Start/Stop VMs during off-hours solution in Azure Automation](../automation-solution-vm-management.md).
@@ -215,7 +215,7 @@ Include a synopsis, description, and help URI for every cmdlet in your module. I
215215

216216
### Connection type
217217

218-
If the module connects to an external service, define a [connection type](#adding-a-connection-type-to-your-module). Each cmdlet in the module should accept a connection object (an instance of that connection type) as a parameter. Users map parameters of the connection asset to the cmdlet's corresponding parameters each time they call a cmdlet. The following runbook example, based on the example in the previous section, uses a Contoso connection asset called `ContosoConnection`. This asset accesses Contoso resources and returns data from the external service. In this example, the fields are mapped to the `UserName` and `Password` properties of a `PSCredential` object, and then passed to the cmdlet.
218+
If the module connects to an external service, define a [connection type](#add-a-connection-type-to-your-module). Each cmdlet in the module should accept a connection object (an instance of that connection type) as a parameter. Users map parameters of the connection asset to the cmdlet's corresponding parameters each time they call a cmdlet. The following runbook example, based on the example in the previous section, uses a Contoso connection asset called `ContosoConnection`. This asset accesses Contoso resources and returns data from the external service. In this example, the fields are mapped to the `UserName` and `Password` properties of a `PSCredential` object, and then passed to the cmdlet.
219219

220220
```powershell
221221
$contosoConnection = Get-AutomationConnection -Name 'ContosoConnection'

0 commit comments

Comments
 (0)