Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This rule looks for old public module versions. It's recommended to use the most recent module versions.
Note
This rule is off by default. Change the level in bicepconfig.json to enable it.
To customize rule settings, use the following value in the Bicep configuration file:
use-recent-module-versions
The following example fails this test because an older module version is used:
module storage 'br/public:avm/res/storage/storage-account:0.6.0' = {
name: 'myStorage'
params: {
name: 'store${resourceGroup().name}'
}
}
Use Quick Fix to use the latest module version:
For more information about the linter, see Use Bicep linter.