Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ module testDeployment '../../deploy.bicep' = {
{
description: 'Test runbook'
name: 'TestRunbook'
runbookType: 'PowerShell'
type: 'PowerShell'
uri: 'https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.automation/101-automation/scripts/AzureAutomationTutorial.ps1'
version: '1.0.0.0'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ module automationAccount_schedules 'schedules/deploy.bicep' = [for (schedule, in
name: schedule.name
automationAccountName: automationAccount.name
advancedSchedule: contains(schedule, 'advancedSchedule') ? schedule.advancedSchedule : null
scheduleDescription: contains(schedule, 'description') ? schedule.description : ''
description: contains(schedule, 'description') ? schedule.description : ''
expiryTime: contains(schedule, 'expiryTime') ? schedule.expiryTime : ''
frequency: contains(schedule, 'frequency') ? schedule.frequency : 'OneTime'
interval: contains(schedule, 'interval') ? schedule.interval : 0
Expand Down
4 changes: 2 additions & 2 deletions modules/Microsoft.Automation/automationAccounts/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ module automationAccounts './Microsoft.Automation/automationAccounts/deploy.bice
{
description: 'Test runbook'
name: 'TestRunbook'
runbookType: 'PowerShell'
type: 'PowerShell'
uri: 'https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.automation/101-automation/scripts/AzureAutomationTutorial.ps1'
version: '1.0.0.0'
}
Expand Down Expand Up @@ -686,7 +686,7 @@ module automationAccounts './Microsoft.Automation/automationAccounts/deploy.bice
{
"description": "Test runbook",
"name": "TestRunbook",
"runbookType": "PowerShell",
"type": "PowerShell",
"uri": "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.automation/101-automation/scripts/AzureAutomationTutorial.ps1",
"version": "1.0.0.0"
}
Expand Down