bicepparam files #17029
-
Hi, Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
No that is not possible, but if I understand your question correctly you want to share values from Bicepparam files across Bicep files and avoid duplicates? If yes, you can do it the other way around. If you have Bicep files which have parameters with the same parameter name you can make use of |
Beta Was this translation helpful? Give feedback.
No that is not possible, but if I understand your question correctly you want to share values from Bicepparam files across Bicep files and avoid duplicates? If yes, you can do it the other way around.
If you have Bicep files which have parameters with the same parameter name you can make use of
extendable parameters
. You still need multiple parameters files for this though, but you can share value (or extend) from a base Bicepparam and avoid duplicates. This document might help you understand what it does: https://github.com/Azure/bicep/blob/main/docs/experimental/extendable-param-files.md