We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb723a8 commit 18a7843Copy full SHA for 18a7843
infra/core/search/search-services.bicep
@@ -62,4 +62,4 @@ resource search 'Microsoft.Search/searchServices@2021-04-01-preview' = {
62
output id string = search.id
63
output endpoint string = 'https://${name}.search.windows.net/'
64
output name string = search.name
65
-output principalId string = search.identity.principalId
+output principalId string = (sku.name == 'free') ? '' : search.identity.principalId
0 commit comments