Open camtittle opened 11 months ago
Thanks @camtittle for raising this request, let me check and add it to our backlog once confirmed.
The property is available in next api version 2023-01-01, may not be able to put it with high priority, need to check.
This is crucial for cybersecurity weak cipher suite certification clearance, and we need this fix to be available immediately. We can't maintain this manually because whenever we execute Terraform, the manual changes will be overridden, creating a high risk to the production environment.
thanks @camtittle @xiaxyi for this request, when will we be able to get this version, since it's not yet available? This problem now affects our entire platform, and we run the same risk as @rajeeshmenoth
The above PR doesn't cover azurerm_windows_web_app. I hope this issue isn't closed before that.
@xiaxyi it looks like the new properties got never implemented/dropped (even though the API version got upgraded to 2023-01-01) when #24447 got superseded by #24483. Is that correct?
Is there anything I can help to get those implemented?
@xiaxyi any update here?
this is feature is really important, any pentest brings up the point with App Service TLS Cipher Suite
Hi all, the property is added in the mentioned pr. Feel free to track it for any progress.
Any update on when the pr will be merged?
Any updates on this please, our client is asking for this feature.
Meanwhile you may use azapi (1.15.0) for that
resource "azapi_update_resource" "minTlsCipherSuite" {
type = "Microsoft.Web/sites@2023-01-01"
resource_id = azurerm_linux_web_app.linux_web_app.id
body = jsonencode({
properties = {
siteConfig = {
minTlsCipherSuite = "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA"
}
}
})
response_export_values = ["properties"]
}
Is there an existing issue for this?
Community Note
Description
Azure app service supports specifying the minimum TLS cipher suite to allow for incoming traffic. This can be set via the update config API's
minTlsCipherSuite
field.See the Azure App Service blog for more details.
It would be great to be able specify this field in Terraform configuration.
New or Affected Resource(s)/Data Source(s)
azurerm_linux_web_app, azurerm_windows_web_app
Potential Terraform Configuration
References
No response