Open owingruters opened 6 months ago
@jackofallops I am using the latest version. I also do not see it in the releasenotes and the documentation also states only v1.2 is available
@owingruters the issue is still open, so that's expected at this time. As per the label, this requires updating to use a new version of the App Service API, so this is more involved than just adding a new value for this field.
2023-12-01 API has support for 1.3: https://learn.microsoft.com/en-us/rest/api/appservice/web-apps/create-or-update-configuration?view=rest-appservice-2023-12-01&tabs=HTTP#supportedtlsversions
azapi workaround:
resource "azapi_update_resource" "example_app_tls" {
type = "Microsoft.Web/sites@2023-12-01"
resource_id = azurerm_linux_web_app.example.id
body = jsonencode({
properties = {
siteConfig = {
minTlsVersion = "1.3"
scmMinTlsVersion = "1.3"
}
}
})
}
Hi @owingruters, the minimum_tls_version
supports 1.3
now, starts from v4.3 by PR (https://github.com/hashicorp/terraform-provider-azurerm/pull/27196) and document update on v4.8 by https://github.com/hashicorp/terraform-provider-azurerm/pull/27823
For any further questions please leave comments.
Is there an existing issue for this?
Community Note
Terraform Version
1.4.4
AzureRM Provider Version
3.101.0
Affected Resource(s)/Data Source(s)
azurerm_linux_web_app and azurerm_windows_web_app
Terraform Configuration Files
Debug Output/Panic Output
Expected Behaviour
TF can accept minimum_tls_version = 1.3 and sets the Azure App Service to 1.3
Actual Behaviour
see error. Max is 1.2. Azure is now supporting 1.3
Steps to Reproduce
No response
Important Factoids
No response
References
No response