Skip to content

Commit

Permalink
Merge pull request #15 from sethsteenken/main
Browse files Browse the repository at this point in the history
deploy - added required Properties field for FormRecognizer
  • Loading branch information
pablomarin authored Nov 6, 2023
2 parents 174d4bf + f0d382d commit 4ee0556
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions azuredeploy.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,11 @@ resource formRecognizerAccount 'Microsoft.CognitiveServices/accounts@2023-05-01'
name: 'S0'
}
kind: 'FormRecognizer'
properties: {
apiProperties: {
statisticsEnabled: false
}
}
}

resource blobStorageAccount 'Microsoft.Storage/storageAccounts@2023-01-01' = {
Expand Down
7 changes: 6 additions & 1 deletion azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,12 @@
"sku": {
"name": "S0"
},
"kind": "FormRecognizer"
"kind": "FormRecognizer",
"properties": {
"apiProperties": {
"statisticsEnabled": false
}
}
},
{
"type": "Microsoft.Storage/storageAccounts",
Expand Down

0 comments on commit 4ee0556

Please sign in to comment.