We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 34bf09c + 3009967 commit a0365ecCopy full SHA for a0365ec
dev-infrastructure/templates/image-sync.bicep
@@ -68,6 +68,10 @@ var secretWithFolderPrefix = [
68
}
69
]
70
71
+var secretVar = {
72
+ secrets: secretWithFolderPrefix
73
+}
74
+
75
//
76
// Container App Infra
77
@@ -234,7 +238,7 @@ resource componentSyncJob 'Microsoft.App/jobs@2024-03-01' = if (componentSyncEna
234
238
{ name: 'TENANT_ID', value: tenant().tenantId }
235
239
{ name: 'DOCKER_CONFIG', value: '/auth' }
236
240
{ name: 'MANAGED_IDENTITY_CLIENT_ID', value: uami.properties.clientId }
237
- { name: 'SECRETS', value: string(secretWithFolderPrefix) }
241
+ { name: 'SECRETS', value: string(secretVar) }
242
243
244
0 commit comments