You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using ARM Template Checker to scan a directory that contains our ARM Templates and Parameter files. I found that 100% of our parameters files were getting skipped when running the following:
Eventually found that we had to move template and parameters files into dedicated directories, and adjust the command as follows to get all templates and parameters files to be linked and not skipped (found that running multiple commands for each template/parameter pair works too, but not useful):
This requirement does not appear to be documented at all, and the only reference I can find for naming convention or requirements for scanning template/parameter pairs is in the FAQ section. It took me (and one of my Microsoft contacts) a few hours before we figured this out, so it would be extremely helpful if some additional clarification on this could be added into the docs.
The text was updated successfully, but these errors were encountered:
I am using ARM Template Checker to scan a directory that contains our ARM Templates and Parameter files. I found that 100% of our parameters files were getting skipped when running the following:
Get-AzSKARMTemplateSecurityStatus -ARMTemplatePath "X:\templates" -ParameterFilePath "C:\templates" -Recurse
Eventually found that we had to move template and parameters files into dedicated directories, and adjust the command as follows to get all templates and parameters files to be linked and not skipped (found that running multiple commands for each template/parameter pair works too, but not useful):
Get-AzSKARMTemplateSecurityStatus -ARMTemplatePath "X:\templates\deploy" -ParameterFilePath "X:\templates\params" -Recurse
This requirement does not appear to be documented at all, and the only reference I can find for naming convention or requirements for scanning template/parameter pairs is in the FAQ section. It took me (and one of my Microsoft contacts) a few hours before we figured this out, so it would be extremely helpful if some additional clarification on this could be added into the docs.
The text was updated successfully, but these errors were encountered: