Skip to content

Commit ba6d05c

Browse files
authored
Fixed webhook validation error (#20)
1 parent 8321b92 commit ba6d05c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ resource "azurerm_function_app" "function" {
3838
storage_account_access_key = azurerm_storage_account.storage.primary_access_key
3939
version = "~3"
4040
https_only = true
41-
client_affinity_enabled = false
4241
enable_builtin_logging = false
4342

4443
app_settings = merge({

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ variable "time_zone" {
6565
variable "webhook_url" {
6666
type = string
6767
description = "The webhook where notifications will be sent."
68-
default = ""
68+
default = null
6969
}
7070

7171
variable "external_account_binding" {

0 commit comments

Comments
 (0)