We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d547d0 commit 2981f97Copy full SHA for 2981f97
main.tf
@@ -17,6 +17,7 @@ resource "azurerm_storage_account" "storage" {
17
account_replication_type = "LRS"
18
enable_https_traffic_only = true
19
allow_blob_public_access = false
20
+ min_tls_version = "TLS1_2"
21
}
22
23
resource "azurerm_app_service_plan" "serverfarm" {
@@ -49,6 +50,7 @@ resource "azurerm_function_app" "function" {
49
50
https_only = true
51
client_affinity_enabled = false
52
enable_builtin_logging = false
53
+ min_tls_version = "1.2"
54
55
app_settings = merge({
56
"APPLICATIONINSIGHTS_CONNECTION_STRING" = azurerm_application_insights.insights.connection_string
0 commit comments