Skip to content

Azure CDN Using Outdated TLS Encryption

Description

Code Example

terraform
resource "azurerm_cdn_endpoint_custom_domain" "example" {
  name                = "example-cdn-custom-domain"
  # ... other configurations ...

  cdn_managed_https {
    # ... other configurations ...
+   tls_version = "TLS12"
    # ... other configurations ...
  }

  # or 

  user_managed_https {
    # ... other configurations ...
+   tls_version = "TLS12"
    # ... other configurations ...
  }

  # ... other configurations ...
}

Remediation

Terraform

Resource:

  • azurerm_cdn_endpoint_custom_domain

Arguments:

  • cdn_managed_https or user_managed_https

Rule Details

FieldValue
IDIAC-0707
SeverityMEDIUM
IaC TypeTerraform
FrameworksTerraform,
Checkov IDCKV_AZURE_200

References