We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b84757 commit 86df44aCopy full SHA for 86df44a
1 file changed
terraform/src/main.tf
@@ -62,7 +62,10 @@ resource "azurerm_function_app" "function_app" {
62
storage_account_access_key = azurerm_storage_account.storage.primary_access_key
63
app_service_plan_id = azurerm_service_plan.asp.id
64
os_type = "linux"
65
- runtime_stack = "python"
+
66
+ app_settings = {
67
+ FUNCTIONS_WORKER_RUNTIME = "python"
68
+ }
69
70
depends_on = [azurerm_service_plan.asp]
71
@@ -132,4 +135,4 @@ resource "azurerm_key_vault" "keyvault" {
132
135
provisioner "local-exec" {
133
136
command = "echo Key Vault: ${self.name}"
134
137
}
-}
138
+}
0 commit comments