Does bicep support ARM linked template hierarchies? #1480
-
I’m quite used to segment my ARM templates leveraging the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
We have replaced the need for linked templates with modules. This allows you to split up your bicep project into multiple files, and then when you run This does not cover any non-template artifacts though (i.e. a |
Beta Was this translation helpful? Give feedback.
-
That clears things up. |
Beta Was this translation helpful? Give feedback.
We have replaced the need for linked templates with modules. This allows you to split up your bicep project into multiple files, and then when you run
bicep build
, we combine everything into a single ARM template with nested deployments so it is easy to deploy (no staging to storage), but it is functionally equivalent to what you are doing with linked templates.This does not cover any non-template artifacts though (i.e. a
.ps1
script), so if you need those in your deployment those will still need to be staged to a public endpoint.