Skip to content

Commit

Permalink
fix: it all
Browse files Browse the repository at this point in the history
  • Loading branch information
arealmaas committed Dec 20, 2024
1 parent ac89b64 commit f358855
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ resource containerAppEnvironment 'Microsoft.App/managedEnvironments@2024-03-01'
name: containerAppEnvironmentName
}

resource managedIdentity 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = {
name: '${namePrefix}-sync-rp-info-identity'
location: location
tags: tags
}

var containerAppEnvVars = [
{
name: 'Infrastructure__DialogDbConnectionString'
Expand Down Expand Up @@ -94,6 +100,7 @@ module migrationJob '../../modules/containerAppJob/main.bicep' = {
tags: tags
cronExpression: jobSchedule
args: 'sync-resource-policy-information'
userAssignedIdentityId: managedIdentity.id
}
}

Expand Down

0 comments on commit f358855

Please sign in to comment.