There are multiple types of data contract out there now, happened to use one below as so much tooling.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"terminal.integrated.env.osx": { | |
"PATH": "" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Variables | |
$resourceGroupName = 'myResourceGroup' | |
$location = 'northeurope' | |
$automationAccountName = 'myAutomationAccount' | |
$runbookName = 'myRunbook3' | |
$runbookDescription = 'This is a test runbook' | |
$runbookType = 'PowerShell7' | |
$scriptContent='Write-Output "Hello World!"' | |
# Login to Azure |
OlderNewer