How do I build bicep file with a specific parameter file? #3239
Answered
by
alex-frankel
sreejaptfa
asked this question in
Q&A
-
Hi, |
Beta Was this translation helpful? Give feedback.
Answered by
alex-frankel
Jun 16, 2021
Replies: 1 comment 1 reply
-
params are not required during the build phase, they are only needed for deployment. So you could specify:
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
brwilkinson
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
params are not required during the build phase, they are only needed for deployment. So you could specify:
az deployment group create -f main.bicep -p params.json ...