Please vote on this issue by adding a š reaction to the original issue to help the community and maintainers prioritize this request.
Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request.
If you are interested in working on this issue or have submitted a pull request, please leave a comment.
Description
I like that iso_url uses Go-Getter to fetch and optionally checksum an ISO, but find it strange that secondary_iso_images does not have the same features. Rather, it seems like this just gets piped directly into Hyper-V as other ISOs to mount.
Use Case(s)
Installing additional software from the internet or a network share.
Wanting to ensure that software being installed has the same checksum as when you wrote the template, especially since the software is likely being installed from an elevated session in Windows or root session in Linux, where it would be vulnerable to a supply chain attack.
Potential configuration
Either parse the secondary_iso_images variable through the same code that handles iso_urlor provide a new option called secondary_iso_image_urls that are processed through Go-Getter and can get appended to the ISO URLs passed into Hyper-V if they are provided.
Community Note
Please vote on this issue by adding a š reaction to the original issue to help the community and maintainers prioritize this request. Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request. If you are interested in working on this issue or have submitted a pull request, please leave a comment.
Description
I like that
iso_url
uses Go-Getter to fetch and optionally checksum an ISO, but find it strange thatsecondary_iso_images
does not have the same features. Rather, it seems like this just gets piped directly into Hyper-V as other ISOs to mount.Use Case(s)
Potential configuration
Either parse the
secondary_iso_images
variable through the same code that handlesiso_url
or provide a new option calledsecondary_iso_image_urls
that are processed through Go-Getter and can get appended to the ISO URLs passed into Hyper-V if they are provided.Potential References