Skip to content

Commit

Permalink
chore: Update AS scanner rule for SKU tier check
Browse files Browse the repository at this point in the history
  • Loading branch information
cmendible committed Apr 25, 2024
1 parent 4b5718a commit 4fc7014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/scanners/as/rules.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func (a *AnalysisServicesScanner) GetRules() map[string]scanners.AzureRule {
i := target.(*armanalysisservices.Server)
sku := *i.SKU.Tier
sla := "None"
if sku != armanalysisservices.SKUTierBasic {
if sku != armanalysisservices.SKUTierDevelopment {
sla = "99.9%"
}
return sla == "None", sla
Expand Down

0 comments on commit 4fc7014

Please sign in to comment.