Skip to content

Commit

Permalink
update config
Browse files Browse the repository at this point in the history
  • Loading branch information
arpith-f5 committed Dec 3, 2024
1 parent 780aee6 commit 15290e5
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 7 deletions.
21 changes: 15 additions & 6 deletions terraform/deployments/with-web-application-firewall/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,8 @@ resource "azurerm_nginx_deployment" "example" {
network_interface {
subnet_id = module.prerequisites.subnet_id
}
nginx_app_protect {
web_application_firewall_settings {
activation_state = "Enabled"
}
web_application_firewall {
activation_state = "Enabled"
}
tags = var.tags
}
Expand All @@ -57,18 +55,29 @@ worker_processes auto;
worker_rlimit_nofile 8192;
pid /run/nginx/nginx.pid;
load_module modules/ngx_http_app_protect_module.so;
events {
worker_connections 4000;
}
error_log /var/log/nginx/error.log error;
http {
app_protect_enforcer_address 127.0.0.1:50000;
server {
listen 80 default_server;
server_name localhost;
location / {
return 200 'Hello World';
app_protect_enable on;
app_protect_policy_file /etc/app_protect/conf/NginxDefaultPolicy.tgz;
proxy_pass http://127.0.0.1:80/proxy/$request_uri;
}
location /proxy {
default_type text/html;
return 200 "Hello World\n";
}
}
}
Expand Down
5 changes: 5 additions & 0 deletions terraform/deployments/with-web-application-firewall/output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,8 @@ output "ip_address" {
description = "IP address of NGINXaaS deployment."
value = azurerm_nginx_deployment.example.ip_address
}

output "waf_status" {
description = "waf status of NGINXaaS deployment."
value = azurerm_nginx_deployment.example.web_application_firewall[0].status
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ variable "name" {

variable "sku" {
description = "SKU of NGINXaaS deployment."
default = "standard_Monthly"
default = "standardv2_Monthly"
}

variable "tags" {
Expand Down

0 comments on commit 15290e5

Please sign in to comment.