terraform-provider-azurerm
terraform-provider-azurerm copied to clipboard
Add TLS 1.3 support for azurerm_cdn_frontdoor_custom_domain
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.
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
We are building Azure Verified Module for CDN Profile and need this capability.
Dependent on https://github.com/hashicorp/pandora/issues/2831