Skip to content

Commit

Permalink
Allowing IP restriction
Browse files Browse the repository at this point in the history
  • Loading branch information
shaheislamdfe committed Nov 25, 2024
1 parent b94167f commit 3b7a0ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/app.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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] : []
Expand Down

0 comments on commit 3b7a0ac

Please sign in to comment.