mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
win_iis_webapppool: Use Get-AnsibleParam to retrieve parameter
- Fixes #22805
This commit is contained in:
parent
ee478c4885
commit
78de05e58d
1 changed files with 3 additions and 2 deletions
|
@ -32,8 +32,9 @@ $state = Get-AnsibleParam -obj $params -name "state" -default "present" -validat
|
||||||
# Attributes parameter - Pipe separated list of attributes where
|
# Attributes parameter - Pipe separated list of attributes where
|
||||||
# keys and values are separated by comma (paramA:valyeA|paramB:valueB)
|
# keys and values are separated by comma (paramA:valyeA|paramB:valueB)
|
||||||
$attributes = @{};
|
$attributes = @{};
|
||||||
If (Get-Member -InputObject $params -Name attributes) {
|
$attrs = Get-AnsibleParam -obj $params -name "attributes" -type "string" -failifempty $false
|
||||||
$params.attributes -split '\|' | foreach {
|
If ($attrs) {
|
||||||
|
$attrs -split '\|' | foreach {
|
||||||
$key, $value = $_ -split "\:"
|
$key, $value = $_ -split "\:"
|
||||||
$attributes.Add($key, $value)
|
$attributes.Add($key, $value)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue