Azure region

Self-hosted GitHub Actions runners in Azure East US

Azure's flagship US region with the widest SKU catalogue. Cirun spins Azure VMs in Azure East US on demand for each workflow and tears them down when the job completes — compute stays in US.

Why this fits

  • Azure's flagship US region with the widest SKU catalogue.
  • Azure Azure East US keeps your CI compute in US for the duration of the job — useful for GDPR, RBI, HIPAA-adjacent and other data-residency rules.
  • Audit-friendly — every job logs the region it ran in; data leaving the region requires an explicit step in your workflow.

.cirun.yml

.cirun.yml
1runners:
2 - name: azure-eastus-runner
3 cloud: azure
4 instance_type: Standard_D8s_v5
5 # Azure image reference is Publisher:Offer:SKU:Version (string-colon
6 # form) or an explicit map. Canonical's Ubuntu 22.04 LTS is the
7 # standard choice.
8 machine_image: Canonical:0001-com-ubuntu-server-jammy:22_04-lts-gen2:latest
9 labels:
10 - cirun-azure-eastus

Drop this in your repo root. The first workflow that requests the runner label spins this configuration up on your cloud account.

Ready to run your CI here?

Cirun is free for open source. For private repos, flat monthly plans by repo count — never per CI minute.

Sources · verified 2026-05-25