mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
with_items is obsolete - using loop instead (#46805)
This commit is contained in:
parent
b17f02a89a
commit
559c92f9b6
1 changed files with 1 additions and 1 deletions
|
@ -341,7 +341,7 @@ Setup IIS Website
|
||||||
resource_name: WindowsFeature
|
resource_name: WindowsFeature
|
||||||
Name: '{{item}}'
|
Name: '{{item}}'
|
||||||
Ensure: Present
|
Ensure: Present
|
||||||
with_items:
|
loop:
|
||||||
- Web-Server
|
- Web-Server
|
||||||
- Web-Asp-Net45
|
- Web-Asp-Net45
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue