checkov icon indicating copy to clipboard operation
checkov copied to clipboard

CKV_AZURE_80 outdated

Open l33tCod-er opened this issue 9 months ago • 0 comments

Describe the issue We are using Terraform to setup a windows service. We use resource of type "azurerm_windows_web_app", so that the rule CKV_AZURE_80 is applied / checked:

Source

Examples

Our config looks as:

resource "azurerm_windows_web_app" "app-service" {
...
  site_config {
    default_documents = ["readme.html", "index.html"]
    always_on         = true
    ftps_state        = "Disabled"
    http2_enabled     = true
    application_stack {
      dotnet_version = "v8.0"
    }
  }
...
}

We get: [None][CKV_AZURE_80] Ensure that 'Net Framework' version is the latest, if used as a part of the web app. From the sources it seems it expects dotnet v7.0, so it shall be updated to accept all LTS.

Version (please complete the following information):

  • Checkov Version 3.2.44

l33tCod-er avatar May 21 '24 14:05 l33tCod-er