<% content_for :title, "New WAF Policy" %>

New WAF Policy

Create a new firewall policy to automatically generate rules

<%= link_to "← Back to Policies", waf_policies_path, class: "inline-flex items-center px-4 py-2 border border-gray-300 rounded-md shadow-sm text-sm font-medium text-gray-700 bg-white hover:bg-gray-50" %>
<%= form_with(model: @waf_policy, local: true, class: "space-y-6") do |form| %>

📋 Basic Information

<%= form.label :name, class: "block text-sm font-medium text-gray-700" %> <%= form.text_field :name, class: "block w-full border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500 sm:text-sm", placeholder: "e.g., Block Brazil" %>
<%= form.label :description, "Description", class: "block text-sm font-medium text-gray-700" %> <%= form.text_area :description, rows: 3, class: "block w-full border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500 sm:text-sm", placeholder: "Explain why this policy is needed..." %>
<%= form.label :policy_type, "Policy Type", class: "block text-sm font-medium text-gray-700" %> <%= form.select :policy_type, options_for_select(@policy_types.map { |type| [type.humanize, type] }, @waf_policy.policy_type), { prompt: "Select policy type" }, { class: "block w-full border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500 sm:text-sm", id: "policy-type-select" } %>
<%= form.label :action, "Action", class: "block text-sm font-medium text-gray-700" %> <%= form.select :action, options_for_select(@actions.map { |action| [action.humanize, action] }, @waf_policy.action), { prompt: "Select action" }, { class: "block w-full border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500 sm:text-sm", id: "action-select" } %>

🎯 Targets Configuration

⚙️ Additional Configuration

<%= form.label :expires_at, "Expires At (optional)", class: "block text-sm font-medium text-gray-700" %> <%= form.datetime_local_field :expires_at, class: "block w-full border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500 sm:text-sm" %>

Leave blank for permanent policy

<%= form.check_box :enabled, class: "h-4 w-4 text-blue-600 focus:ring-blue-500 border-gray-300 rounded" %> <%= form.label :enabled, "Enable this policy immediately", class: "ml-2 text-sm text-gray-700" %>
<%= link_to "Cancel", waf_policies_path, class: "inline-flex items-center px-4 py-2 border border-gray-300 rounded-md shadow-sm text-sm font-medium text-gray-700 bg-white hover:bg-gray-50" %> <%= form.submit "Create Policy", class: "inline-flex items-center px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500" %>
<% end %>