Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/Azure/ResourceModules into …
Browse files Browse the repository at this point in the history
…users/csidebotham/1715-feature-request-update-api-version-and-disable-local-auth
  • Loading branch information
ChrisSidebotham committed Aug 19, 2022
2 parents f01aaab + 0fa3a31 commit 162f537
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
5 changes: 3 additions & 2 deletions docs/wiki/The library - Module overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ This section provides an overview of the library's feature set.
| 6 | MS.Insights<p>scheduledQueryRules | :white_check_mark: | | :white_check_mark: | | | | | 106 |
| 7 | MS.Insights<p>diagnosticSettings | | | | :white_check_mark: | | | | 79 |
| 8 | MS.Insights<p>actionGroups | :white_check_mark: | | :white_check_mark: | | | | | 85 |
| 9 | MS.Automation<p>automationAccounts | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | | [L1:6] | 363 |
| 9 | MS.Automation<p>automationAccounts | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | | [L1:6] | 362 |
| 10 | MS.ApiManagement<p>service | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | | | [L1:11, L2:3] | 413 |
| 11 | MS.ContainerInstance<p>containerGroups | | :white_check_mark: | :white_check_mark: | | | | | 113 |
| 12 | MS.Consumption<p>budgets | | | | | | | | 90 |
Expand Down Expand Up @@ -118,7 +118,8 @@ This section provides an overview of the library's feature set.
| 103 | MS.Resources<p>deploymentScripts | | :white_check_mark: | :white_check_mark: | | | | | 111 |
| 104 | MS.Resources<p>resourceGroups | :white_check_mark: | :white_check_mark: | :white_check_mark: | | | | | 64 |
| 105 | MS.Databricks<p>workspaces | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | | | | 141 |
| Sum | | 82 | 80 | 90 | 49 | 21 | 2 | 144 | 17783 |
| Sum | | 82 | 80 | 90 | 49 | 21 | 2 | 144 | 17782 |




Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,6 @@ module automationAccount_runbooks 'runbooks/deploy.bicep' = [for (runbook, index
module automationAccount_jobSchedules 'jobSchedules/deploy.bicep' = [for (jobSchedule, index) in jobSchedules: {
name: '${uniqueString(deployment().name, location)}-AutoAccount-JobSchedule-${index}'
params: {
name: contains(jobSchedule, 'name') ? jobSchedule.name : uniqueString(name, subscription().id)
automationAccountName: automationAccount.name
runbookName: jobSchedule.runbookName
scheduleName: jobSchedule.scheduleName
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@description('Optional. Name of the Automation Account job schedule. Must be a GUID. If not provided, a new GUID is generated.')
param name string = uniqueString(automationAccountName, subscription().id)
@description('Generated. Name of the Automation Account job schedule. Must be a GUID and is autogenerated. No need to provide this value.')
param name string = newGuid()

@description('Conditional. The name of the parent Automation Account. Required if the template is used in a standalone deployment.')
param automationAccountName string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,14 @@ This module deploys an Azure Automation Account Job Schedule.
| Parameter Name | Type | Default Value | Description |
| :-- | :-- | :-- | :-- |
| `enableDefaultTelemetry` | bool | `True` | Enable telemetry via the Customer Usage Attribution ID (GUID). |
| `name` | string | `[uniqueString(parameters('automationAccountName'), subscription().id)]` | Name of the Automation Account job schedule. Must be a GUID. If not provided, a new GUID is generated. |
| `parameters` | object | `{object}` | List of job properties. |
| `runOn` | string | `''` | The hybrid worker group that the scheduled job should run on. |

**Generated parameters**
| Parameter Name | Type | Default Value | Description |
| :-- | :-- | :-- | :-- |
| `name` | string | `[newGuid()]` | Name of the Automation Account job schedule. Must be a GUID and is autogenerated. No need to provide this value. |


## Outputs

Expand Down

0 comments on commit 162f537

Please sign in to comment.