{# Step 3 - pick the audit target. Project dropdown comes from gcp_projects_for_picker(); region is free text with a list of common BigQuery locations. The billing project chosen on step 2 is carried forward via the ``form_data.billing_project_id`` value and surfaces as a small confirmation pill above the form + a hidden input on the form so the step 3 POST writes the full payload (project, region, lookback, billing) atomically. #} {% extends "setup/layout.html" %} {% block content %}
Pick the BigQuery project you want to audit, the region its dataset lives in, and the lookback window for the first scan. Project and region are required — everything in audit is scoped to a single (project, region) pair. Submitting this form saves the config and starts the scan in the background; you'll land on the configurations page where it continues running.
{% if form_data and form_data.billing_project_id %}{{ form_data.billing_project_id }}
change