Description
ref : https://github.com/Azure/ResourceModules/blob/main/docs/wiki/The%20library%20-%20Module%20usage.md
Currently both sample for PowerUser and Azure CLI are for Windows Users
I'd like to change the sample part of Azure CLI to pure Mac/Linux usage:
From
az group create --name 'ExampleGroup' --location "Central US"
$inputObject = @(
'--name', 'ExampleDeployment',
'--resource-group', 'ExampleGroup',
'--template-file', "$home\ResourceModules\arm\Microsoft.KeyVault\vault\deploy.bicep",
'--parameters', 'storageAccountType=Standard_GRS',
)
az deployment group create @inputObject
to
az group create --name 'ExampleGroup' --location "Central US"
inputObject=(
'--name' 'ExampleDeployment'
'--resource-group' 'ExampleGroup'
'--template-file' "$home/ResourceModules/arm/Microsoft.KeyVault/vault/deploy.bicep"
'--parameters' 'storageAccountType=Standard_GRS'
)
az deployment group create ${inputObject[@]}
if you agree this idea, I can raise PR to update it
Description
ref : https://github.com/Azure/ResourceModules/blob/main/docs/wiki/The%20library%20-%20Module%20usage.md
Currently both sample for PowerUser and Azure CLI are for Windows Users
I'd like to change the sample part of
Azure CLIto pure Mac/Linux usage:From
to
if you agree this idea, I can raise PR to update it