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
Description:
Checkov does not flag hardcoded connection strings in appSettingsKeyValuePairs when scanning a Bicep file.
This is a security risk because connection strings may be leaked in configuration.
Steps to Reproduce:
Create a main.bicep file with the following snippet:
Description:
Checkov does not flag hardcoded connection strings in appSettingsKeyValuePairs when scanning a Bicep file.
This is a security risk because connection strings may be leaked in configuration.
Steps to Reproduce:
appSettingsKeyValuePairs: {
AppConfiguration__CCaaSConnectionString: appConfig.listKeys().value[0].connectionString
AppConfiguration__ConnectionString: emsAppConfigConnectionString
FUNCTIONS_EXTENSION_VERSION: '~4'
FUNCTIONS_WORKER_RUNTIME: 'dotnet'
}
checkov --directory . --framework bicep
Expected Behavior:
Checkov should flag any hardcoded connection strings in appSettingsKeyValuePairs as a potential
The text was updated successfully, but these errors were encountered: