We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0f98e0 commit 2ba89f7Copy full SHA for 2ba89f7
1 file changed
content-gen/infra/main.bicep
@@ -247,6 +247,7 @@ var imageModelDeployment = imageModelChoice != 'none' ? [
247
var aiFoundryAiServicesModelDeployment = concat(baseModelDeployments, imageModelDeployment)
248
249
var aiFoundryAiProjectDescription = 'Content Generation AI Foundry Project'
250
+var existingTags = resourceGroup().tags ?? {}
251
252
// ============== //
253
// Resources //
@@ -276,7 +277,7 @@ resource resourceGroupTags 'Microsoft.Resources/tags@2021-04-01' = {
276
277
name: 'default'
278
properties: {
279
tags: union(
- resourceGroup().tags ?? {},
280
+ existingTags,
281
tags,
282
{
283
TemplateName: 'ContentGen'
0 commit comments