Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MertSenel/a44519da846de4ca9eaef79ffc9b62cb to your computer and use it in GitHub Desktop.
Save MertSenel/a44519da846de4ca9eaef79ffc9b62cb to your computer and use it in GitHub Desktop.
param (
[Parameter()][switch]$WhatIf,
[Parameter()][switch]$Test,
[Parameter()][switch]$Force,
[Parameter()][securestring]$mySecretValue
)
$ARGS = @{
ResourceGroupName = $ResourceGroupName
TemplateFile = $TemplateFile
TemplateParameterFile = $TemplateParameterFile
Mode = 'Incremental'
Verbose = $true
ErrorAction = 'Stop'
mySecretParameterName = $mySecretValue
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment