Skip to main content
Version: Next

Variable Standards

Canonical reference: Variable Management Standard
Full variable catalog: Variable Reference
Last Updated: 2026-03-17


Overview

This repository uses a single central configuration fileconfig/variables.yml — as the source of truth for all deployment automation. Copy from config/variables.example.yml to get started.


Naming Rules

RuleStandardExample
Top-level sectionssnake_caseazure_local, networking
Keys within sectionssnake_casesubscription_id, resource_name
Pattern^[a-z][a-z0-9_]*$
Max length50 characters
BooleansDescriptive namesmonitoring_enabled: true
Secretskeyvault:// URI formatkeyvault://kv-iic-platform/admin-password

Config File Structure

config/
├── variables.example.yml # Template with IIC examples (committed)
├── variables.yml # Your actual config (gitignored)
└── schema/
└── variables.schema.json # JSON Schema for CI validation

Key Vault Resolution

Secrets are never stored in plaintext:

security:
admin_password: "keyvault://kv-iic-platform/admin-password"
domain_join_password: "keyvault://kv-iic-platform/domain-join"

CI Validation

Every PR validates config/variables.example.yml against config/schema/variables.schema.json using the validate-config.yml workflow.


Detailed Reference

For the complete variable catalog see: