Skip to content

Commit

Permalink
[Ingestion Client] Remove language specific URL from bicep + ARM temp…
Browse files Browse the repository at this point in the history
…late (#2628)
  • Loading branch information
HenryvanderVegte authored Oct 14, 2024
1 parent 4028dbc commit 8972a52
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions samples/ingestion/ingestion-client/infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ param AzureSpeechServicesRegion string = 'westus'
@description('Enter the address of your private endpoint here (e.g. https://mycustomendpoint.cognitiveservices.azure.com/) if you are connecting with a private endpoint')
param CustomEndpoint string = ''

@description('The time interval for the timer trigger in the StartTranscription function (https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer?tabs=python-v2%2Cisolated-process%2Cnodejs-v4&pivots=programming-language-csharp#ncrontab-expressions). The default value is every 2 minutes.')
@description('The time interval for the timer trigger in the StartTranscription function (https://learn.microsoft.com/azure/azure-functions/functions-bindings-timer?tabs=python-v2%2Cisolated-process%2Cnodejs-v4&pivots=programming-language-csharp#ncrontab-expressions). The default value is every 2 minutes.')
param StartTranscriptionFunctionTimeInterval string = '0 */2 * * * *'

@description('The requested profanity filter mode.')
Expand Down Expand Up @@ -144,7 +144,7 @@ param DeploymentId string = utcNow()
param CompletedServiceBusConnectionString string = ''

// Don't change the format for Version variable
var Version = 'v2.1.11'
var Version = 'v2.1.12'
var AudioInputContainer = 'audio-input'
var AudioProcessedContainer = 'audio-processed'
var ErrorFilesOutputContainer = 'audio-failed'
Expand Down
6 changes: 3 additions & 3 deletions samples/ingestion/ingestion-client/infra/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"_generator": {
"name": "bicep",
"version": "0.29.47.4906",
"templateHash": "3468761430613594439"
"templateHash": "15510503880947378622"
}
},
"parameters": {
Expand Down Expand Up @@ -114,7 +114,7 @@
"type": "string",
"defaultValue": "0 */2 * * * *",
"metadata": {
"description": "The time interval for the timer trigger in the StartTranscription function (https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer?tabs=python-v2%2Cisolated-process%2Cnodejs-v4&pivots=programming-language-csharp#ncrontab-expressions). The default value is every 2 minutes."
"description": "The time interval for the timer trigger in the StartTranscription function (https://learn.microsoft.com/azure/azure-functions/functions-bindings-timer?tabs=python-v2%2Cisolated-process%2Cnodejs-v4&pivots=programming-language-csharp#ncrontab-expressions). The default value is every 2 minutes."
}
},
"ProfanityFilterMode": {
Expand Down Expand Up @@ -224,7 +224,7 @@
}
},
"variables": {
"Version": "v2.1.11",
"Version": "v2.1.12",
"AudioInputContainer": "audio-input",
"AudioProcessedContainer": "audio-processed",
"ErrorFilesOutputContainer": "audio-failed",
Expand Down

0 comments on commit 8972a52

Please sign in to comment.