Skip to content

Commit 4768250

Browse files
committed
Added info on array input parameters
1 parent b361be6 commit 4768250

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

articles/automation/runbook-input-parameters.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Configure runbook input parameters in Azure Automation
33
description: This article tells how to configure runbook input parameters, which allow data to be passed to a runbook when it's started.
44
services: automation
55
ms.subservice: process-automation
6-
ms.date: 09/22/2021
6+
ms.date: 04/03/2023
77
ms.topic: conceptual
88
ms.custom: devx-track-azurepowershell
99
---
@@ -60,6 +60,10 @@ In this case, you can pass the following value to the parameter.
6060
```powershell
6161
@{"FirstName"="Joe";"MiddleName"="Bob";"LastName"="Smith"}
6262
```
63+
For PowerShell 7.1 runbooks, provide array input parameters in below format:
64+
| **Name** | **Value** |
65+
|:--- |:--- |
66+
| TESTPARAMETER | does,this,even,work |
6367

6468
> [!NOTE]
6569
> When you do not pass a value to an optional String parameter with a null default value, the value of the parameter is an empty string instead of Null.

0 commit comments

Comments
 (0)