We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 184bfbe commit 7d231a7Copy full SHA for 7d231a7
2 files changed
ql/lib/codeql/bicep/Concepts.qll
@@ -13,7 +13,7 @@ abstract class PublicResource extends Resource {
13
14
module Cryptography {
15
abstract class WeakTlsVersion extends Resource {
16
- abstract Expr getWeakTlsVersionProperty();
+ abstract StringLiteral getWeakTlsVersionProperty();
17
18
/**
19
* Returns true if the resource has a weak TLS version.
ql/lib/codeql/bicep/frameworks/Microsoft/Databases.qll
@@ -241,7 +241,7 @@ module Databases {
241
}
242
243
class WeakDatabaseTlsVersion extends Cryptography::WeakTlsVersion instanceof DatabaseResource {
244
- override Expr getWeakTlsVersionProperty() {
+ override StringLiteral getWeakTlsVersionProperty() {
245
result = DatabaseResource.super.getProperties().getProperty("minimalTlsVersion")
246
247
0 commit comments