Skip to content

Commit

Permalink
Commented out code for Media Service and AVAM Service
Browse files Browse the repository at this point in the history
  • Loading branch information
georearl committed Feb 20, 2024
1 parent 7d280dc commit 23a27f6
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -549,29 +549,29 @@ module functions 'core/function/function.bicep' = {
]
}

// Media Service
module media_service 'core/video_indexer/media_service.bicep' = {
name: 'media_service'
scope: rg
params: {
name: !empty(mediaServiceName) ? mediaServiceName : '${prefix}${abbrs.mediaService}${randomString}'
location: location
tags: tags
storageAccountID: storageMedia.outputs.id
}
}

// AVAM Service
module avam 'core/video_indexer/video_indexer.bicep' = {
name: 'avam'
scope: rg
params: {
name: !empty(videoIndexerName) ? videoIndexerName : '${prefix}${abbrs.videoIndexer}${randomString}'
location: location
tags: tags
mediaServiceAccountResourceId: media_service.outputs.id
}
}
// // Media Service
// module media_service 'core/video_indexer/media_service.bicep' = {
// name: 'media_service'
// scope: rg
// params: {
// name: !empty(mediaServiceName) ? mediaServiceName : '${prefix}${abbrs.mediaService}${randomString}'
// location: location
// tags: tags
// storageAccountID: storageMedia.outputs.id
// }
// }

// // AVAM Service
// module avam 'core/video_indexer/video_indexer.bicep' = {
// name: 'avam'
// scope: rg
// params: {
// name: !empty(videoIndexerName) ? videoIndexerName : '${prefix}${abbrs.videoIndexer}${randomString}'
// location: location
// tags: tags
// mediaServiceAccountResourceId: media_service.outputs.id
// }
// }

// USER ROLES
module openAiRoleUser 'core/security/role.bicep' = {
Expand Down

0 comments on commit 23a27f6

Please sign in to comment.