Drupal Deployment Ops June 17, 2026 4 views

How Vamao Drupal Config Guard OS Preflight Works

A practical walkthrough of the local Drush preflight, redacted hosted drift sync, license activation, and CI output.

Vamao Drupal Config Guard OS is a licensed Drupal module with two layers: local preflight checks that run inside the Drupal project, and optional hosted sync that stores redacted deployment findings in VamaoLabs.

Local preflight

The module reads Drupal configuration state from the project where it is installed. It compares active config, sync config, split-related state, ignored patterns, and extension dependencies. The report is available in Drupal admin and through a Drush command that can be used in CI.

drush vamao-config-guard:preflight --format=json

Hosted sync

Licensed teams can sync redacted findings to VamaoLabs. The hosted side keeps risk categories, config object names, environment metadata, and drift fingerprints. It is meant for agencies and enterprise teams that need a cross-site view of deployment health without storing raw secret values.

Setup after purchase

  1. Download the module from the VamaoLabs dashboard when the release package is available.
  2. Install it in web/modules/custom/vamao_config_guard or your Composer package workflow.
  3. Enable the module with Drush.
  4. Paste the VamaoLabs license key and generate a site token in Drupal admin.
  5. Run local preflight before config import; add JSON output to CI when the team is ready.
drupal drush config guard ci

Related Posts