Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove media_service and avam modules from BICEP #505

Merged
merged 1 commit into from
Feb 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 0 additions & 26 deletions infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ param applicationInsightsName string = ''
param backendServiceName string = ''
param enrichmentServiceName string = ''
param functionsAppName string = ''
param mediaServiceName string = ''
param videoIndexerName string = ''
param searchServicesName string = ''
param searchServicesSkuName string = 'standard'
param storageAccountName string = ''
Expand Down Expand Up @@ -546,30 +544,6 @@ 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
}
}

// USER ROLES
module openAiRoleUser 'core/security/role.bicep' = {
scope: rg
Expand Down
Loading