File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ param serviceName string = 'api'
9
9
param exists bool
10
10
param projectConnectionString string
11
11
param agentDeploymentName string
12
+ param agentName string
12
13
13
14
resource apiIdentity 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = {
14
15
name : identityName
@@ -24,6 +25,10 @@ var env = [
24
25
name : 'AZURE_AIPROJECT_CONNECTION_STRING'
25
26
value : projectConnectionString
26
27
}
28
+ {
29
+ name : 'AZURE_AI_AGENT_NAME'
30
+ value : agentName
31
+ }
27
32
{
28
33
name : 'AZURE_AI_AGENT_DEPLOYMENT_NAME'
29
34
value : agentDeploymentName
Original file line number Diff line number Diff line change @@ -330,6 +330,7 @@ module api 'api.bicep' = {
330
330
containerRegistryName : containerApps .outputs .registryName
331
331
projectConnectionString : projectConnectionString
332
332
agentDeploymentName : agentDeploymentName
333
+ agentName : agentName
333
334
exists : apiAppExists
334
335
}
335
336
}
You can’t perform that action at this time.
0 commit comments