From 3b7a0acad0b0e3d2d3898c25ad80efff32767e1f Mon Sep 17 00:00:00 2001 From: Shahe Islam Date: Tue, 19 Nov 2024 16:12:53 +0000 Subject: [PATCH] Allowing IP restriction --- terraform/app.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/app.tf b/terraform/app.tf index afbf5ad28..6016603db 100644 --- a/terraform/app.tf +++ b/terraform/app.tf @@ -137,8 +137,8 @@ resource "azurerm_linux_web_app" "rsm-app" { minimum_tls_version = "1.2" health_check_path = "/health" - ip_restriction_default_action = "Deny" - scm_ip_restriction_default_action = "Deny" + ip_restriction_default_action = "Allow" + scm_ip_restriction_default_action = "Allow" dynamic "ip_restriction" { for_each = var.domain != null ? [1] : []