Move bicep modules into registry
We should also think about what inner loop development looks like when we move Bicep modules to a registry, using VS Code as our hero client. The primary concern here is that after we move them into a registry, the local development experience becomes a little magical (as there won't be files for them to code nav to).
This would likely and ideally fall into the Bicep extension's feature scope but we should work with their team to ensure that we have an answer for this.
I have been experimenting with putting /infra/core in a public bicep registry and have documented the plan here: https://github.com/Azure/azure-dev/issues/751
With this update, we don't need to ship infra/core files to every template. We instead reference the modules that are in a public registry (that we own for now).
You can see what the resulting template will look like here: https://github.com/Azure-Samples/todo-nodejs-mongo/tree/pr/1251
You'll notice that the infra folder no longer has a core folder:

All of the core modules are now referenced with the "br" aka "bicep registry" notation

Could you please have a look and let me know your thoughts on this approach?
Jon
Phase 1 (using ACR, pushing core modules, updating none-core modules) , PR: https://github.com/Azure/azure-dev/pull/1267
Related Bicep issues: Completions
- [x] Set up CDN for MCR module reference completion - https://github.com/Azure/bicep/issues/9036
- [x] Support MCR module reference completion https://github.com/Azure/bicep/issues/9037
- [ ] Support ACR module reference completion https://github.com/Azure/bicep/issues/9038 - will have partial support. This has dependency on ACR.
Help/hint/F12
- [x] Add view Type https://github.com/Azure/bicep/issues/8789
- [x] Add help text https://github.com/Azure/bicep/issues/6356
- [ ] F12 (go to definition) https://github.com/Azure/bicep/issues/5407
From an Engineering System perspective, I think (this is a brain dump... plans that make sense coming soon):
-
Bicep modules look like "independent" shippable units compared to the
azdCLI and ourAzure-Samplestemplates. To that end we should have a separate pipeline which publishes those.- Modules should also be independent of each other. That is, we can release
br/azd:bicep/staging/core/host/appservice:v1.0andbr/azd:bicep/staging/core/host/cosmos-mongo-db:v2.0in the same or separate pipeline runs - Modules live in a separate folder from repoman's
templatesfolder in the repo (unless we want to add this directly to repoman scenarios)
- Modules should also be independent of each other. That is, we can release
-
Any release process should involve checking for presence of a module at a version before releasing OVER that version... Maybe this can work with
--write-enabled false -
Use SemVer to version the modules, this is primarily for the benefit of consumers though upgrading on the consumer side looks to be manual.
-
We'll need a way to test PR-specific and
latestmodules against templates
Dev/PR/Release process for azd developers working on bicep modules looks like:
- Create project-specific ACR instance
- Update
bicepconfig.jsonto point to project-specific ACR instance,bicep pushmodules in their current state to ACR - Make changes,
bicep pushto project-specific ACR instance as needed, ensure versions of releasing modules are correct - Open PR, run
azure-dev - bicep-modulesandazure-dev - template - testswith updated bicep modules included (those pipelines have a PR configuration which uses the proposed config changes) - Get approval and merge
- Kick off manual run of
azure-dev - bicep-modulespipeline with the names of the modules to release - Approve release of modules
- Kick off manual run of
azure-dev - repomanand approve template release
This workflow incorporates both template and bicep module changes in the same PR. It's more complex but it's also more complete. If we broke this into two PRs (one to update the bicep modules and one to update the template references to the bicep modules) that would also work and would probably require less automation.
We'll also have to figure out how to ensure that the templates point only to intended released bicep module versions.
Keeping templates and published bicep modules in sync will also require some design. We can publish new modules at any time but templates may be held up for other reasons.
@danieljurek - thx for that.
I think we could consider shipping azd bicep core modules as a versioned unit versus versioning each module independently. My hunch is that versioning individually would create more of a maintenance issue than worth.
@vhvb1989 in your POC. Did you try referencing modules and running azd from an external subscription or personal account? Will we run into any access issues since being a private registry?
@rajeshkamal5050 , yes, I did try. The container registry needs to be configured to enable anonymous read access. That's anyone can pull the modules w/o any credentials. The registry behaves similar to a CDN. Docs: https://learn.microsoft.com/en-us/azure/container-registry/anonymous-pull-access#about-anonymous-pull-access
@savannahostrowski @ellismg Not in scope for GA. Moving this to Gallium.
related: https://github.com/Azure/azure-dev/pull/1267
Assigning to Germanium for now - need to confirm with other stakeholders on what's necessary here.
@rajeshkamal5050 @savannahostrowski do you still want to see this happening? or should we close it in favor of [AVMs, ADE, IaC abstraction, etc, etc], as the strategy for composing infra, instead of introducing this azd-bicep-modules-registry
Yeah - I'm actually okay with that for now.