PSArm icon indicating copy to clipboard operation
PSArm copied to clipboard

PSArm is a PowerShell module that provides a PowerShell-embedded domain-specific language (DSL) for Azure Resource Manager (ARM) templates

Results 70 PSArm issues
Sort by recently updated
recently updated
newest added

One area that I think would be a great area of investment for all users would be to generate a PSArm definition from either an ARM template or longer term...

Except for the ones defined by PSArm. Alias definitions in PowerShell take precedence over functions, which take precedence over cmdlets. PSArm defines cmdlet-based keywords with aliases, but resource-specific keywords (i.e....

When running `ConvertFrom-ArmTemplate -Path .\MyTemplate.json' an error is thrown as the CmdLet looks for the template in the wrong folder. Using full path works as expected. ![image](https://user-images.githubusercontent.com/17783007/113211077-46b49200-9275-11eb-8a2f-0428b76ee9ea.png)

Fixes https://github.com/PowerShell/PSArm/issues/135

Currently the `Resource` keyword is simply a naive object builder and always requires Namespace and Type inputs for both body definitions and completions. However, in child resources, the namespace and...

Today in PSArm, you must use the `concat` function to make string concatenation work at template deployment time. Ordinary PowerShell string manipulation methods work if all your inputs are string...

PSArm probably needs a new keyword that allows for the definition of variables, parameters and outputs and then just links up the inner templates. This probably wants to look something...