terraform-provider-azurerm icon indicating copy to clipboard operation
terraform-provider-azurerm copied to clipboard

Add TLS 1.3 support for azurerm_cdn_frontdoor_custom_domain

Open Poven795909 opened this issue 1 year ago • 2 comments

Is there an existing issue for this?

  • [X] I have searched the existing issues

Community Note

  • Please vote on this issue by adding a :thumbsup: reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment and review the contribution guide to help.

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

Poven795909 avatar May 07 '24 08:05 Poven795909

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

didayal-msft avatar May 07 '24 08:05 didayal-msft

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

tombuildsstuff avatar May 07 '24 09:05 tombuildsstuff