Skip to main content
Solved

Title: Are there any tools for Acumatica configuration-as-code / GitOps?

  • July 12, 2026
  • 2 replies
  • 37 views

kborovik
Freshman I

I'm looking for a way to manage a tenant's configuration as code — declarative files in a git repo I can review in a pull request, version, and re-apply to rebuild a tenant reproducibly.

By "configuration" I mean setup data, not customization code: enabled features, company/branch structure, chart of accounts, ledgers, GL preferences, currencies, credit terms, financial calendars, and the like.

The workflow I want is basically infrastructure-as-code — capture a tenant's setup into source files, edit them in git, apply to another tenant, then diff to catch drift.

Customization Projects cover code but not this setup data. Snapshots are reproducible but are whole-database blobs — not human-readable or diffable in a PR. The REST API can push data, but it's a building block, not a desired-state workflow.

Is there an existing tool or established pattern for this — a community tool, an ISV product, or something people have built in-house? Curious how others handle it.

Thanks!

Best answer by Kyle Vanderstoep

There is not, I had thought about building a community project to do this. 

2 replies

Kyle Vanderstoep
Varsity I
Forum|alt.badge.img+2

There is not, I had thought about building a community project to do this. 


kborovik
Freshman I
  • Author
  • Freshman I
  • July 21, 2026

@Kyle Vanderstoep 
 

I started something in that direction and would value your take:

• CLI: https://github.com/kborovik/acumatica-cli (acu / PyPI acumatica-cli)
• Sample config repo: https://github.com/kborovik/acumatica-gitops

Setup data as YAML in git; apply via REST (idempotent), diff for drift. Early, verified only on 26.101.0225 / API 25.200.001.

If you get a chance, take a look at whether the model is useful (or where it falls short) would mean a lot.