File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ resource account 'Microsoft.CognitiveServices/accounts@2023-10-01-preview' = {
34
34
properties : {
35
35
customSubDomainName : customSubDomainName
36
36
publicNetworkAccess : publicNetworkAccess
37
- // Document Intelligence (FormRecognizer) does not support bypass in network acls
38
- networkAcls : kind == 'FormRecognizer' ? networkAcls : networkAclsWithBypass
37
+ // Some services do not support bypass in network acls
38
+ networkAcls : ( kind == 'FormRecognizer' || kind == 'ComputerVision' ) ? networkAcls : networkAclsWithBypass
39
39
disableLocalAuth : disableLocalAuth
40
40
}
41
41
sku : sku
@@ -57,4 +57,4 @@ resource deployment 'Microsoft.CognitiveServices/accounts/deployments@2023-05-01
57
57
58
58
output endpoint string = account .properties .endpoint
59
59
output id string = account .id
60
- output name string = account .name
60
+ output name string = account .name
You can’t perform that action at this time.
0 commit comments