hashicorp / terraform-provider-azurerm

Terraform provider for Azure Resource Manager
https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs
Mozilla Public License 2.0
4.52k stars 4.6k forks source link

Add TLS 1.3 support for azurerm_cdn_frontdoor_custom_domain #25881

Open Poven795909 opened 4 months ago

Poven795909 commented 4 months ago

Is there an existing issue for this?

Community Note

Description

The property "minimum_tls_version" in "TLS" block does not support TLS 1.3. Getting below error when providing TLS 1.3 as input variable.

image

New or Affected Resource(s)/Data Source(s)

azurerm_cdn_frontdoor_custom_domain

Potential Terraform Configuration

resource "azurerm_cdn_frontdoor_custom_domain" "example" {
  name                     = "example-customDomain"
  cdn_frontdoor_profile_id = azurerm_cdn_frontdoor_profile.example.id
  dns_zone_id              = azurerm_dns_zone.example.id
  host_name                = "contoso.fabrikam.com"

  tls {
    certificate_type    = "ManagedCertificate"
    minimum_tls_version = "TLS13"
  }
}

References

No response

didayal-msft commented 4 months ago

We are building Azure Verified Module for CDN Profile and need this capability.

tombuildsstuff commented 4 months ago

Dependent on https://github.com/hashicorp/pandora/issues/2831