sparse-intern-71089
03/09/2019, 5:30 PMwhite-balloon-205
witty-gigabyte-30920
03/09/2019, 7:33 PMazure.compute.Extension
. However, I have a new error. The code I'm using is:
const contosoWebsite = new azure.compute.Extension("ContosoWebsite", {
location: resourceGroup.location,
publisher: "Microsoft.Powershell",
resourceGroupName: resourceGroup.name,
settings: {
"modulesUrl": "<https://github.com/Azure/azure-quickstart-templates/raw/master/dsc-extension-iis-server-windows-vm/ContosoWebsite.ps1.zip>",
"configurationFunction": "ContosoWebsite.ps1\\\\ContosoWebsite"
}
,
type: "DSC",
typeHandlerVersion: "2.19",
virtualMachineName: vm.name,
});`
The error is "Error downloading https://github.com........Could not create SSL/TLS secure channel"
If I do the same thing through the Azure portal, it works. If I remote to the VM, and browser to the URL with IE (I know), it says it is not trusted. Am I missing something obvious?witty-gigabyte-30920
03/09/2019, 7:39 PM