Details
-
Bug
-
Status: Resolved
-
Normal
-
Resolution: Fixed
-
PUP 7.4.1
-
Coremunity
-
Platform Core KANBAN
-
Needs Assessment
-
Bug Fix
-
Fixes a regression in 7.x which prevented the splat operator from being used to override resource attributes in a resource collector.
-
Needs Assessment
Description
On Puppet 7.4.1, I get "The operator '* =>' in a Virtual Query is not supported." from the following code:
$services.each |$key, $value| {
|
if defined(Service[$key]) {
|
Service <| title == $key |> {
|
* => $value,
|
}
|
} else {
|
service { $key:
|
* => $value,
|
}
|
}
|
}
|
This seemed to work fine with Puppet 5 and 6.
Attachments
Issue Links
- mentioned in
-
Page Loading...