Skip to content

Commit ed8590c

Browse files
Minor fixes
1 parent 4605d25 commit ed8590c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/automation/automation-runbook-types.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The Azure Automation Process Automation feature supports several types of runboo
1919
|:--- |:--- |
2020
| [PowerShell](#powershell-runbooks) <br>(recommended) |Textual runbook based on Windows PowerShell scripting. The currently supported versions are PowerShell 7.4 and PowerShell 5.1. Since [PowerShell 7.1](/powershell/scripting/install/powershell-support-lifecycle?view=powershell-7.3&preserve-view=true#powershell-end-of-support-dates) and PowerShell 7.2 are no longer supported by parent product PowerShell, we recommend that you create runbooks in long term supported version PowerShell 7.4. |
2121
| [PowerShell Workflow](#powershell-workflow-runbooks)|Textual runbook based on Windows PowerShell Workflow scripting. |
22-
| [Python](#python-runbooks) <br>(recommended) |Textual runbook based on Python scripting. The currently supported versions is Python 3.10. Since [Python 2.7](https://devguide.python.org/versions/) and Python 3.8 are no longer supported by parent product Python, we recommend that you create runbooks in Python 3.10.|
22+
| [Python](#python-runbooks) <br>(recommended) |Textual runbook based on Python scripting. The currently supported version is Python 3.10. Since [Python 2.7](https://devguide.python.org/versions/) and Python 3.8 are no longer supported by parent product Python, we recommend that you create runbooks in Python 3.10.|
2323
| [Graphical](#graphical-runbooks)|Graphical runbook based on Windows PowerShell and created and edited completely in the graphical editor in Azure portal. |
2424
| [Graphical PowerShell Workflow](#graphical-runbooks)|Graphical runbook based on Windows PowerShell Workflow and created and edited completely in the graphical editor in Azure portal. |
2525

@@ -44,7 +44,7 @@ The same Azure sandbox and Hybrid Runbook Worker can execute multiple **PowerShe
4444

4545
> [!NOTE]
4646
> - Currently, PowerShell 7.4 runtime version is supported for both Cloud and Hybrid jobs in all Public regions except Brazil Southeast and Gov clouds.
47-
> - At the time of runbook execution, if you select **Runtime Version** as **7.4**, PowerShell modules targeting 7.4 runtime version are used and if you select **Runtime Version** as **5.1**, PowerShell modules targeting 5.1 runtime version are used.
47+
> - At the time of runbook execution, if you select **Runtime Version** as **7.4**, PowerShell modules targeting 7.4 runtime version is used and if you select **Runtime Version** as **5.1**, PowerShell modules targeting 5.1 runtime version is used.
4848
4949
Ensure that you select the right Runtime Version for modules.
5050

@@ -267,7 +267,7 @@ The following are the current limitations and known issues with PowerShell runbo
267267
268268
$ProgressPreference = "Continue"
269269
```
270-
- Avoid importing `Az.Accounts` module to version 2.4.0 version for PowerShell 7 runtime as there can be an unexpected behavior using this version in Azure Automation.
270+
- Avoid importing `Az.Accounts` module to version 2.4.0 for PowerShell 7 runtime as there can be an unexpected behavior using this version in Azure Automation.
271271
- You might encounter formatting problems with error output streams for the job running in PowerShell 7 runtime.
272272
- When you import a PowerShell 7.1 module that's dependent on other modules, you may find that the import button is gray even when PowerShell 7.1 version of the dependent module is installed. For example, Az PowerShell module.Compute version 4.20.0, has a dependency on Az.Accounts being >= 2.6.0. This issue occurs when an equivalent dependent module in PowerShell 5.1 doesn't meet the version requirements. For example, 5.1 version of Az.Accounts were < 2.6.0.
273273
- When you start PowerShell 7 runbook using the webhook, it auto-converts the webhook input parameter to an invalid JSON.
@@ -361,7 +361,7 @@ The limitations of Python runbooks are:
361361

362362
# [Python 2.7](#tab/py27)
363363

364-
- [Python 2.7](https://devguide.python.org/versions/) is no longer supported by parent product Python. We recommend you to create new runbooks in the supported versions and update the outdated runbooks.
364+
- [Python 2.7](https://devguide.python.org/versions/) is no longer supported by parent product Python. We recommend that you create new runbooks in the supported versions and update the outdated runbooks.
365365
- You must be familiar with Python scripting.
366366
- For Python 2.7.12 modules, use wheel files cp27-amd6.
367367
- To use third-party libraries, you must [import the packages](python-packages.md) into the Automation account.
-10.3 KB
Loading

0 commit comments

Comments
 (0)