{# Audit "Profile" — the audit's only "user" is the gcloud principal ADC is bound to. Mirrors governor_web/templates/settings/profile.html (Display Name + Email + Roles), substituted for the audit-relevant fields. #} {% extends "settings/layout.html" %} {% block settings_content %}

gcloud Account

The Google account ADC is currently bound to.

{% if principal %}

{{ principal }}

{% else %}

No active gcloud principal detected. Run gcloud auth application-default login and reload this page.

{% endif %}

ADC Probe

Last credential check against your audit target.

{{ "ok" if adc.ok else (adc.status | replace("_", " ") | lower) }} {% if adc.message %}

{{ adc.message }}

{% endif %}

Audit Target

Project + region this binary will scan. Edit on /admin/configurations.

GCP project
{{ config.gcp_project_id }}
BigQuery region
{{ config.bigquery_region }}
Audit binary
v{{ app_version }}
Config file
~/.governor-audit/config.json
Cache DB
~/.governor-audit/state.db
{% endblock %}