Powershell script in Deployment Helper
See original GitHub issueThe Deployment Helper web app currently provides the AZ CLI commands to be run in a bash script.
It would be nice if we could add a toggle option for powershell users.
eg.
Bash;
az deployment group create -g innerloop --template-uri https://github.com/Azure/AKS-Construction/releases/download/0.8.8/main.json --parameters \
resourceName=az-k8s-fat1 \
authorizedIPRanges="[\"1.2.3.4/32\"]"
Pwsh;
az deployment group create -g innerloop --template-uri https://github.com/Azure/AKS-Construction/releases/download/0.8.8/main.json --parameters `
resourceName=az-k8s-fat1 `
authorizedIPRanges="['1.2.3.4/32']"
Issue Analytics
- State:
- Created a year ago
- Comments:10 (9 by maintainers)
Top Results From Across the Web
Create and run scripts - Configuration Manager - Microsoft Learn
Create and run PowerShell scripts on client devices.
Read more >Using PowerShell scripts in deployment - Documentation
PowerShell is a powerful scripting language which can be used to customize the behavior of your package deployments. For useful examples of ...
Read more >Deployment Scripts - Microsoft Open Source
A number of PowerShell scripts are provided in the Virtual Assistant Template to help deploy and configure your different resources.
Read more >Deploying Powershell Scripts - DeployCentral
I want to know if you can deploy powershell scripts to client computer ... Is there a log file I can view to...
Read more >Best Way To Deploy Powershell Script Using Intune
The Intune PowerShell script deployment is done using Intune management extension agent. This is an additional agent that gets automatically ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Speaking as a PowerShell MVP, I want to see this in PowerShell with the Az modules, but you’ve got four or five hundred lines of bash in postdeploy/scripts! Assuming you’re not going to ditch bash and tell everyone to install pwsh – I don’t think you want anyone to put effort into porting that to PowerShell – you’ll just end up with two copies of the same functionality that you have to maintain…
Thinking of something like this: