I have tried to boot strap a windows 2016 ec2 instance through a launch template. In the config I put
<powershell>
[Net.ServicePointManager]::ServerCertificateValidationCallback = {$true}; $webClient = New-Object System.Net.WebClient; $webClient.DownloadFile('https://<MASTER HOSTNAME>:8140/packages/current/install.ps1', 'install.ps1'); .\install.ps1
</powershell>
I of course put my puppetmaster hostname in. I have used this with method of installing the agent with running ec2 servers, but I am failing here.
I am looking for idea's as to bootstrapping a windows 2016 ec2 instance with puppet 6.
Any idea's?