You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FYI, trying to deploy an Az Mon Private Link Scope, basic set of params:
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"name": {
"value": "AzMonPLS001"
},
"privateEndpoints": {
"value": [
{
"privateDnsZoneResourceIds": [
"Private DNS Resource id1",
"Private DNS Resource id2",
"Private DNS Resource id3",
"Private DNS Resource id4",
"Private DNS Resource id5"
],
"subnetResourceId": "subnet resource id"
}
]
}
}
}
and via DevOps Pipeline receive the following errors:
ERROR: /home/vsts/work/1/s/solutions/carml/modules/insights/private-link-scope/main.bicep(90,5) : Error BCP037: The property "privateDnsZoneGroupName" is not allowed on objects of type "params". Permissible properties include "applicationSecurityGroups", "privateDnsZoneGroup".
/home/vsts/work/1/s/solutions/carml/modules/insights/private-link-scope/main.bicep(91,5) : Error BCP037: The property "privateDnsZoneResourceIds" is not allowed on objects of type "params". Permissible properties include "applicationSecurityGroups", "privateDnsZoneGroup".
/home/vsts/work/1/s/solutions/carml/modules/insights/private-link-scope/main.bicep(97,5) : Error BCP037: The property "applicationSecurityGroupResourceIds" is not allowed on objects of type "params". Permissible properties include "applicationSecurityGroups", "privateDnsZoneGroup".
Looks like the module also doesn't do the Access Modes for the PLS, is that correct?
I think because the ref is to
Microsoft.Insights/privateLinkScopes@2019-10-17-preview rather than
microsoft.insights/privateLinkScopes@2021-07-01-preview ?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
FYI, trying to deploy an Az Mon Private Link Scope, basic set of params:
and via DevOps Pipeline receive the following errors:
Looks like the module also doesn't do the Access Modes for the PLS, is that correct?
I think because the ref is to
Microsoft.Insights/privateLinkScopes@2019-10-17-preview rather than
microsoft.insights/privateLinkScopes@2021-07-01-preview ?
Thanks,
Aengus
Beta Was this translation helpful? Give feedback.
All reactions