Grafana With Its Own Secret Key
Grafana on loopback with a secret key of yours: every install that never set one shares the package's, which encrypts the data-source credentials in its database. Secure cookies and HSTS for the TLS proxy in front; public snapshots, plugin update checks, feedback links and Gravatar switched off. Settings verified through the API, not the file. Original role, live-tested on Rocky Linux 10.
Verification
Live-testedReally deployed to a container sandbox, proven idempotent (a second run changes nothing), verified against the role’s assertions, then torn down.
Conformance
- Static validation (yamllint · ansible-lint)
Provenance
- SHA-256 checksum
- Signature (pending)
Functional
- Live-tested - applied, verified, destroyed
Last verified 2026-09-19 · podman 4.9.3 · ansible 2.21.4 · how we verify
Documentation
grafana-server
Grafana on loopback, with its own secret key, Secure cookies and HSTS for the TLS proxy in front of it, and every default that talks to the outside switched off. Original role for EL 10, live-tested with podman on Rocky Linux 10.
Every unconfigured Grafana shares one secret key. secret_key encrypts
data-source credentials in Grafana's database, and the package default
(SW2YcwTIb9zpOOhoPsMm, in defaults.ini) is the same on every install that
never set it - anyone with a copy of the database and that string reads every
stored password. This role requires a key of yours and the live test greps the
package's out of the rendered file.
The real defaults are not in /etc/grafana/grafana.ini. That file is a
commented sample; /usr/share/grafana/conf/defaults.ini is what applies. The
role writes a short grafana.ini in which every line is a decision, and the
live test reads the settings back through /api/admin/settings - what Grafana
runs with, not what a file says.
Off here, on in Grafana: publishing dashboard snapshots to Grafana Labs' public service, plugin update checks, feedback links, Gravatar lookups. Usage reporting and update checks are already off in the EL packaging (upstream ships them on); the role pins them so a package from elsewhere cannot turn them back on.
Loopback and Secure. Grafana speaks plain HTTP, so it listens on
127.0.0.1 for a TLS proxy (this catalogue's haproxy-tls or caddy-https),
marks its cookies Secure and sends HSTS. On plain HTTP a browser will not keep
the session cookie; the API still answers, which is what the live test uses.
The admin password seeds a new database. admin_password in the ini
applies when Grafana creates its database; for an existing one run
grafana cli admin reset-admin-password <new>. Placeholders are refused
with grafana_server_refuse_placeholders: true.
License
Commercial - IaC Bazaar EULA. (c) IaC Bazaar.
Usage code & full reference need an account
The complete copy-paste usage, the full input/output reference, and operational notes are free with an account - shown here and bundled in the download. Sign in and this section fills in.
- Variables
- Test
Related modules
ansible-prometheus-server
Prometheus from the upstream release (EL 10 has no package), sha256-verified, on loopback: the binary listens everywhere and authenticates nobody. Retention time and size as explicit flags, lifecycle and admin endpoints off (the live test POSTs to both), prometheus.yml checked by the promtool it installs. Pairs with grafana-server and node-exporter. Original role, live-tested on Rocky Linux 10.
ansible-node-exporter
Official node_exporter release (pinned v1.11.1) with sha256 checksum-verified install, dedicated shell-less system user, and a systemd unit on :9100; live-tested for idempotence with a functional /metrics verification.