-
Notifications
You must be signed in to change notification settings - Fork 164
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Shared/Central parameters support #833
Comments
A cascading style will be nice. So you can inherit from a more general bicepparameter file and still have the ability to overrule an imported parameter. Like the union() function currently works. The last written value survives. |
Hello @Jefajers, Extendable parameter files became available as a preview feature in Bicep some time ago. I wonder if we should begin discussing how AzOps could support this new Bicep feature? For reference on my thoughts, we are using these AzOps settings: "AzOps": {
"Core.AllowMultipleTemplateParameterFiles": true,
"Core.DeployAllMultipleTemplateParameterFiles": true,
"Core.ParallelDeployMultipleTemplateParameterFiles": true,
"Core.MultipleTemplateParameterFileSuffix": ".\\w+"
} Some thoughts on my end:
I have also heard talk from the Bicep community about a proposal for a special type of "deployment file" that can specify things like what template to deploy, which parameter file(s) to use, settings for deployment stacks, etc. Right before the community call next week, my team is going to have a chat with some of the Bicep maintainers about bicepparam files, so perhaps we can find some synergies between Bicep and AzOps as part of that. |
@Xitric, lets sync up after your meetup with Bicep maintainers 👍 and take it from there as we aim to incorporate usage of Bicep features together with AzOps. |
This issue is a split from #831
Ability to associate/import/refence multiple parameter files into one outcome.
A fair amount of parameters will be shared by customers as well, which could lead to duplication among the parameter files. However, the Bicep community is already working on parameter imports in Azure/bicep#12019.
The text was updated successfully, but these errors were encountered: