lz-jobsCron

Type: bicep-module

Snippet

resource job 'Microsoft.App/jobs@2025-10-02-preview' = { name: 'cron-${automationJob}' location: location identity: { type: 'UserAssigned' userAssignedIdentities: { '${userAssignedIdentityResourceId}': {} } } properties: { environmentId: environmentId workloadProfileName: 'Consumption' configuration: { replicaTimeout: 300 triggerType: 'Schedule' scheduleTriggerConfig: { cronExpression: cronExpression parallelism: 1 replicaCompletionCount: 1 } } template: { containers: [ { image: image imageType: 'ContainerImage' name: automationJob args: [ '${jobName}.ps1' ] resources: { cpu: json('0.5') memory: '1Gi' } env: vars } ] } } }

Path

landing-zones/bicep/modules/base/jobs-cron.bicep

← Back to bigbang