Closed shelwig closed 3 years ago
template was failing on deployment due to incorrect parameter type for the allowSSH flag.
Was just about to submit this same PR... thank you!
Found same error.
{"error":{"code":"InvalidTemplate","message":"Deployment template validation failed: 'Template parameter JToken type is not valid. Expected 'Boolean'. Actual 'String'. Please see https://aka.ms/resource-manager-parameter-files for usage details.'.","additionalInfo":[{"type":"TemplateViolation","info":{"lineNumber":54,"linePosition":17,"path":"parameters.allowSsh"}}]}}
allowSSH value was set to type bool, but the defaultValue was of type string which was causing an error.