mcp-server-semgrep
Version:
MCP Server for Semgrep Integration - static code analysis with AI
24 lines (23 loc) • 601 B
YAML
rules:
- id: azure-functionapps-accessible-over-https
message: >-
Ensure that HTTP Version is the latest if used to run the Function app
patterns:
- pattern: resource
- pattern-not-inside: |
resource "azurerm_app_service" "..." {
...
https_only = true
...
}
- pattern-inside: |
resource "azurerm_app_service" "..." {
...
}
metadata:
category: best-practice
technology:
- terraform
- azure
languages: [hcl]
severity: WARNING