forked from Azure/ResourceModules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bicepconfig.json
17 lines (17 loc) · 942 Bytes
/
bicepconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// This is a Bicep configuration file. It can be used to control how Bicep operates.
// For example which linter warnings to display, or which external source (e.g. Template Specs / Bicep Container Registry) to make available as a short reference
// For further information, please refer to the official documentation at: https://learn.microsoft.com/en-us/azure/azure-resource-manager/bicep/bicep-config
{
"analyzers": {
"core": {
"rules": {
"explicit-values-for-loc-params": {
"level": "off" // Reason: Our modules default to e.g. the location of their parent resource group which is sufficient if deploying a self-contained solution
},
"no-deployments-resources": {
"level": "off" // Reason: The telemetry resource only has a single output and is self-contained in a deployment
}
}
}
}
}